Question

I have a Longlistselector that is getting the text through data binding. My problem is I need it to be localized so it displays the right language, how is the right way to do it?

I tried the first way that came to my head, but I thought it doesn't work:

MainPage.cs

_UserAdBL.Add(new UserAdB("{Binding LocalizedResources.UsText01, Source={StaticResource LocalizedStrings}}"));

Any help will be appreciated, thanks!

Was it helpful?

Solution

If I understand you correctly, you want to get the value of the {Binding LocalizedResources.UsText01, Source={StaticResource LocalizedStrings}} XAML binding in C#.

So use AppResources.UsText01 like so

_UserAdBL.Add(new UserAdB(AppResources.UsText01));
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top