Tagged Questions

4
votes
1answer
182 views

Manage localization with Baml

I'm developping a little application in WPF and I want to localize my resources. I've always used resources files (.resx), but I heard about BAML that was suppose to change the way of manage ...
1
vote
1answer
74 views

Can I use WPF window constructor to change culture?

I use the well known LocBaml approach to change culture. It works fine here: public App() { // Test code bool override_current_ui_language = true; string locale = "es-ES"; if ...
1
vote
0answers
255 views

Locbaml error when using VisualStateManager in Framework 3.5

When I translated the Tester.WPF.resources.dll, I get an error. It's like the baml file have modified VisualStateGroup to an collection. I don't understand. The poject starts up without any problem in ...
1
vote
3answers
2k views

WPF locbaml-ed application and runtime language switch?

i wonder if there is a simple solution to change language of a wpf application during runtime. i used locbaml to globalize all the resources. Setting the Current Thread's UICulture in the ...
0
votes
1answer
925 views

access system:string resource dictionary xaml in C#

How do I access the contents in a resource dictionary using C#? for example, here is my code in XAML: <system:String x:Key="NewGroup">New Group Name</system:String> and i want to ...