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
275
Set UltraTabbedMDIManager tab text
posted

I can set the tab text during Initialization easily enough:

Private Sub mdiManager_InitializeTab(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinTabbedMdi.MdiTabEventArgs) Handles mdiManager.InitializeTab

 

 

 

e.Tab.Text = "Tab Text"

 

End Sub

But once the form is open, how can I change the text?  Me.Text doesn't get the job done.

TIA!!

  • 71886
    Offline posted

     

    Hello David R Stark,

    You could change a tab on a button click for example. Something similiar to this:

     

      private void ultraButton1_Click(object sender, EventArgs e)
    
            {
    
                ultraTabbedMdiManager1.TabGroups[0].Tabs[0].Text = "Example";
    
            }
    
    
    

    Please do not hesitate to contact us if you need any additional assistance.