hi
I created a wpf App with a Dockpanel and Gridview controller, i referenced the DLL's with noXaml and included the Xaml from the Themes.Implicit, in App.Xaml.css i have created a static constructor with this signature.The CustomLocalizationManager is a subclass of
LocalizationManager and use a resource.resx for the switch key for the language. The problem is when i debug the code i notice in the InteliTrace the exceptions
What am i doing wrong or is that normal.
thanks regards
I created a wpf App with a Dockpanel and Gridview controller, i referenced the DLL's with noXaml and included the Xaml from the Themes.Implicit, in App.Xaml.css i have created a static constructor with this signature.The CustomLocalizationManager is a subclass of
LocalizationManager and use a resource.resx for the switch key for the language. The problem is when i debug the code i notice in the InteliTrace the exceptions
+ Thrown: "Could not find any resources appropriate for the specified culture or the neutral culture. Make sure "Telerik.Windows.Controls.Docking.g.resources" was correctly embedded or linked into assembly "Telerik.Windows.Controls.Docking" at compile time, or that all the satellite assemblies required are loadable and fully signed." (System.Resources.MissingManifestResourceException) Exception Message = "Could not find any resources appropriate for the specified culture or the neutral culture. Make sure \"Telerik.Windows.Controls.Docking.g.resources\" was correctly embedded or linked into assembly \"Telerik.Windows.Controls.Docking\" at compile time, or that all the satellite assemblies required are loadable and fully signed.", Exception Type = "System.Resources.MissingManifestResourceException", Exception WinRT Data = null
+ Thrown: "Could not find any resources appropriate for the specified culture or the neutral culture. Make sure "Telerik.Windows.Controls.GridView.g.resources" was correctly embedded or linked into assembly "Telerik.Windows.Controls.GridView" at compile time, or that all the satellite assemblies required are loadable and fully signed." (System.Resources.MissingManifestResourceException) Exception Message = "Could not find any resources appropriate for the specified culture or the neutral culture. Make sure \"Telerik.Windows.Controls.GridView.g.resources\" was correctly embedded or linked into assembly \"Telerik.Windows.Controls.GridView\" at compile time, or that all the satellite assemblies required are loadable and fully signed.", Exception Type = "System.Resources.MissingManifestResourceException", Exception WinRT Data = null
+ Thrown: "Could not find any resources appropriate for the specified culture or the neutral culture. Make sure "Telerik.Windows.Controls.Data.g.resources" was correctly embedded or linked into assembly "Telerik.Windows.Controls.Data" at compile time, or that all the satellite assemblies required are loadable and fully signed." (System.Resources.MissingManifestResourceException) Exception Message = "Could not find any resources appropriate for the specified culture or the neutral culture. Make sure \"Telerik.Windows.Controls.Data.g.resources\" was correctly embedded or linked into assembly \"Telerik.Windows.Controls.Data\" at compile time, or that all the satellite assemblies required are loadable and fully signed.", Exception Type = "System.Resources.MissingManifestResourceException", Exception WinRT Data = null
public
partial
class
App
{
static
App()
{
DispatcherHelper.Initialize();
Thread.CurrentThread.CurrentCulture =
new
CultureInfo(
"en"
);
Thread.CurrentThread.CurrentUICulture =
new
CultureInfo(
"en"
);
LocalizationManager.Manager =
new
CustomLocalizationManager();
}
}
What am i doing wrong or is that normal.
thanks regards