How can I localize strings in Xaml files for WPFLocalizationExtension

I am using WPFLocalizationExtension to localize my WPF application. I am very pleased with the runtime behavior, but manually extracting string properties into ResX files is very tedious.

Is there a way to automate this? I used to use the Xaml Localizer Addin tool, which did just that (screenshot below), but it only works with VS2008, and I could not find a newer version.

enter image description here

+8
wpf localization xaml
source share
1 answer

If you are using Visual Studio 2010, you can check out the Xaml Localization Tool . This is an extension for vs2010 to localize the xaml application and generate .resx files from xaml.

Another idea is to download the XAML Localize Source Code and create your own visual studio add-in or tool compatible with your version. net.

+3
source share

All Articles