Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Everything / TabControl

TabControl

TabControl

Great Reads

by Richard James Moss
This article describes adding design time support for a TabControl-like component which renders the same way the Project Properties in Visual Studio 2012.
by PIEBALDconsult
A binary search technique to determine which TabPage of a TabControl was clicked
by Lutosław
This method, although it doesn't use binary search, handles Multiline tab pages too.private static intGetTabIndexAt( System.Windows.Forms.TabControl tabControl, System.Drawing.Point point){ int result = -1; if (tabControl != null) { for (int i = 0;...
by Kabwla.Phone
Determine visibility in complex (or composite) form

Latest Articles

by Richard James Moss
This article describes adding design time support for a TabControl-like component which renders the same way the Project Properties in Visual Studio 2012.
by PIEBALDconsult
A binary search technique to determine which TabPage of a TabControl was clicked
by Lutosław
This method, although it doesn't use binary search, handles Multiline tab pages too.private static intGetTabIndexAt( System.Windows.Forms.TabControl tabControl, System.Drawing.Point point){ int result = -1; if (tabControl != null) { for (int i = 0;...
by Kabwla.Phone
Determine visibility in complex (or composite) form

All Articles