Hi!
Is is possible to get GridViewGroupPanelText to refresh when application culture changes? I have created custom resx (GridViewResources.en.resx and GridViewResources.resx) and it's working on initialization but does not change when the culture is changed during application execution.
I have added ResourceManager to .xaml.cs like this:
Br,
Kalle
Is is possible to get GridViewGroupPanelText to refresh when application culture changes? I have created custom resx (GridViewResources.en.resx and GridViewResources.resx) and it's working on initialization but does not change when the culture is changed during application execution.
I have added ResourceManager to .xaml.cs like this:
public BillingView()
{
LocalizationManager.Manager = new LocalizationManager()
{
ResourceManager = GridViewResources.ResourceManager
};
InitializeComponent();
}
Br,
Kalle