开发者

right dockpanel

开发者 https://www.devze.com 2023-01-31 23:09 出处:网络
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..

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" />          
    ...
0

精彩评论

暂无评论...
验证码 换一张
取 消