I am using a Tab Control in a C# WinForms application. I want to change the title of the tabs. By default they are tabPage1, tabPage2, etc.
tabCtrl.TabPages[0].Text = "some text"; tabCtrl.TabPages[1].Text = "some other text";