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:
Tab Control in WPF
Cursor in WPF and C#
I wanted to thank you for this article as it help me lot to understand tab control, and i also wanted to know how to format the controls on different tab in designing, any help will be appreciated thank you
Hi Rathore,very cool Article.Good Work....
thanks
how can when I press the tab key ficus does not go from tab to tabIf you tell me what I need to so it work likt that in you code I would appreciate itEmail me at steve_44@inbox.com
HiUse the TabStripPlacement="Left" in the TabControl like as follows:
<TabControl Name="Tabs1" TabStripPlacement="Left" >