mirror of https://github.com/AMT-Cheif/Stylet.git
11 lines
552 B
XML
11 lines
552 B
XML
<Window x:Class="Stylet.Samples.TabNavigation.ShellView"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:s="https://github.com/canton7/Stylet"
|
|
Title="ShellView" Height="300" Width="300">
|
|
<DockPanel>
|
|
<TextBlock DockPanel.Dock="Top" Text="{Binding ActiveItem.DisplayName, StringFormat='Active page is {0}'}"/>
|
|
<TabControl Style="{StaticResource StyletConductorTabControl}" Margin="0,10,0,0"/>
|
|
</DockPanel>
|
|
</Window>
|