Vikram
Vikram

Reputation: 1627

Create custom TabItem in WPF

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

Answers (1)

Emond
Emond

Reputation: 50672

<TabControl>
    <TabItem>
        <DockPanel>
            <TreeView/>
            <StackPanel />
        </DockPanel>
    </TabItem>
</TabControl>

Upvotes: 2

Related Questions