You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
961 B
31 lines
961 B
<Window xmlns="http://schemas.microsoft.com/netfx/2007/xaml/presentation" |
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|
Title="WindowTitle" |
|
BorderThickness="10" |
|
Width="400" |
|
Height="300"> |
|
<StackPanel> |
|
<Canvas Height="50"> |
|
<Button>CB</Button> |
|
</Canvas> |
|
<TabControl MinHeight="150"> |
|
<TabItem Header="StackPanel"> |
|
<StackPanel> |
|
<Button>a</Button> |
|
</StackPanel> |
|
</TabItem> |
|
<TabItem Header="Button"> |
|
<Button>button on page 2</Button> |
|
</TabItem> |
|
<TabItem Header="Canvas"> |
|
<Canvas /> |
|
</TabItem> |
|
<TabItem Header="Grid"> |
|
<Grid /> |
|
</TabItem> |
|
<TabItem Header="DockPanel"> |
|
<DockPanel /> |
|
</TabItem> |
|
</TabControl> |
|
</StackPanel> |
|
</Window> |