WPF Localization can be achieved via the following steps. Add UICulture node to project file. ( <Project><PropertyGroup><UICulture>en-US</UICulture> … ) Create Localization IDs for the resources (msbuild /t:updateuid TestProj.csproj ) Create CSV file from en-US resource (LocBaml /parse TestProj.g.en-US.resources /out:en-US.csv) Create new satellite assembly (LocBaml /generate TestProj.resources.dll /trans:fr-CA.csv /cul:fr-CA)
Recent Comments