right dockpanel
i a newbie in xaml and i need your help about tabcontrol i want to make a tab control with tab panel or dock panel in right.. if we follow开发者_运维知识库 this :
<TabControl>
<TabItem Header="first" />
<TabItem Header="Second" />
</TabControl>
will automatically create left top dockpanel or tabpanel, how to make itu top right.. thanks
I'm not quite sure what you mean, but have you tried setting the TabStripPlacement property?
<TabControl TabStripPlacement="Right">
<TabItem Header="first" />
...
精彩评论