Hi,
we are using WPF Localization Extension inside our application. This works good, but actipro ribbon elements do not change texts if the language is changed at runtime.
Example:
If we use your ribbon controls like this, the text of the resource "Name" never changes:
<ribbon:Group>
<ribbon:StackPanel>
<ribbon:ComboBox Label="{lex:Loc Name}" Height="15" Width="50" />
</ribbon:StackPanel>
</ribbon:Group>
If we do the same with standard controls, everything works as expected, thanks to the localization extension the text changes whenever the language is changed:
<ribbon:Group>
<StackPanel Orientation="Vertical">
<Label Content="{lex:Loc Name}" />
<ComboBox Height="15" Width="50" />
</StackPanel>
</ribbon:Group>
Is it possible to change texts on your ribbon controls at runtime using localization?
Thanks in advance
Marc