Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
145
How to change the NavigationPaneToggleButton Text ("Navigation Pane")
posted

I'm trying to change the horizontal "Navigation Pane" text that we have where the xamOutlookBar is minimized, but I don't found where to do it. Any help, please?

Parents
No Data
Reply
  • 54937
    Offline posted

    That string and others are defined as resources and can be modified using the ResourceCustomizer class. The resource strings available are documented in the help here.

        public partial class App : Application
        {
            static App()
            {
                Infragistics.Windows.OutlookBar.Resources.Customizer.SetCustomizedString("NavigationPaneMinimizedText""Text when minimized");

     

Children