Tab Control in Windows Presentation Foundation
Posted by: Keyvan Nayyeri,
on 21 Jan 2007 |
View original | Bookmarked: 0 time(s)
Using tab controls wasn't so hard in Windows Forms applications. But in Windows Presentation Foundation it's easier. 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: TabControl and TabItem. TabControl is the container of one or more TabItem elements. In addition to some attributes that it inherits form its parent, TabControl has a specific attribute and an event handler. ...