
Projects By LANGUAGE
Libraries
Articles & seminars
Source Code

| Tab Control in windows Presentation Foundation |
The Tab control is a common UI element that has been around for some time. It makes a convenient way to organize your window when there is more than could realistically fit and still be comprehensible. Tab Control is easier in Windows Presentation Foundation. Thank to XAML, you can build a tab control from the scratch with markup codes. |
|
Two elements play main roles in building a tab control:
|
|
|
|
|
Each TabControl can contain a collection of TabItem elements. TabItem has two specific attributes. Header is the string value that you see on top of each tab and IsSelected is a Boolean value that specifies if a tab is selected. Apparently only one tab can be selected at a time otherwise the first tab in list will be selected.TabControl is the container of one or more TabItem elements like as follows.In WPF, Tabs are very easy to implement. Create a new WPF Window, remove the default Grid tags, and add the following XAML:
|
|
|
<TabControl> <TabItem Header="Tab 1">xyz</TabItem> <TabItem Header="Tab 2">abc</TabItem> </TabControl> |
| Download this code |