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

Sort by Score

TabControl 

by Aleh Baradzenka
This control is another kind of tab. Tabs are displayed as horizontal stripes and can be collapsed into buttons. Each tab is assigned its own window, which is shown when you click on the tab.
by Eugene Sadovoi
This is an alternative for "Persist the Visual Tree when switching tabs in the WPF TabControl".
by siliconvideo
This article present code that implements a tab control with pop out windows
by Aleh Baradzenka
In this article, you will learn about an adjustable control that has zooming and scrolling tabs, dragging with the mouse, custom drawing and much more.
by Ivan Krivyakov
This is an alternative for "Persist the Visual Tree when switching tabs in the WPF TabControl (optimized)".