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
90
UltraOfficeNavBar Resource Strings
posted

Hi.

I have an Infragistics.Win.UltraWinOfficeNavBar.UltraOfficeNavBar and I can't find documentation to override resource fields of that control. It always displays as english and I want to localize the control to a different language.

I am not able to find the resource strings for this. I am using Infragistics ASP.NET 2018.2 18.2.14

Parents
  • 7535
    Offline posted

    Hello Ricci,

    Thank you for posting.

    Here is the localization method from that dialog:

            #region LocalizeStrings
     
            private void LocalizeStrings()
            {
                this.lblMaxVisibleItems.Text = Shared.SR.GetString("CustomizationDialog_Label_MaximumNumberOfVisibleItems");
                this.lblDisplayStyle.Text = Shared.SR.GetString("CustomizationDialog_Label_DisplayStyleOfItems");
                this.lblOrder.Text = Shared.SR.GetString("CustomizationDialog_Label_DisplayInThisOrder");
                this.btnMoveUp.Text = Shared.SR.GetString("CustomizationDialog_Button_MoveUp");
                this.btnMoveDown.Text = Shared.SR.GetString("CustomizationDialog_Button_MoveDown");
                this.btnReset.Text = Shared.SR.GetString("CustomizationDialog_Button_Reset");
                this.btnOK.Text = Shared.SR.GetString("CustomizationDialog_Button_OK");
                this.btnCancel.Text = Shared.SR.GetString("CustomizationDialog_Button_Cancel");
            }
     
            #endregion //LocalizeStrings

    Let me know if you have any question.

    Regards,

    Divya Jain

Reply Children
No Data