A small localization gripe for Silverlight
I just installed Silverlight 3 last Friday. One feature that I was hoping to see fixed was localization in Silverlight. Ideally, I like to bind localized data, such as labels in XAML. For example: <UserControl.Resources> <resources:ModuleResources x:Key="LanguageResource" /> then, <TextBlock HorizontalAlignment="Center" Margin="7,0,7,0" VerticalAlignment="Center" Text="{Binding Source={StaticResource LanguageResource}, Path=SomePropertyName}"></TextBlock> This works great, but there is one issue. …
Continue reading ‘A small localization gripe for Silverlight’ »