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 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 wpfdev
This blog post is re-posted from www.eriklieben.com. Looking at the file tab of Word 2010, I’ve wondered if a WPF tab control could be transformed to this layout. At first, this felt like something that could never be done, without doing a lot of magic or building it from scratch...