mirror of https://github.com/AMT-Cheif/Stylet.git
14 lines
622 B
XML
14 lines
622 B
XML
<Window x:Class="Stylet.Samples.HelloDialog.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 LastChildFill="False" Margin="10">
|
|
<DockPanel DockPanel.Dock="Top">
|
|
<Button DockPanel.Dock="Right" Command="{s:Action ShowDialog}">Show Dialog</Button>
|
|
<TextBlock DockPanel.Dock="Left" Text="{Binding NameString}"/>
|
|
|
|
</DockPanel>
|
|
</DockPanel>
|
|
</Window>
|