Reputation: 1627
I want to create a custom tabitem in my project with a treeview and stackpanel inside that Tab item. I am new to WPF. Please suggest me how this can be done.
Regards.
Upvotes: 0
Views: 336
Reputation: 50672
<TabControl>
<TabItem>
<DockPanel>
<TreeView/>
<StackPanel />
</DockPanel>
</TabItem>
</TabControl>
Upvotes: 2