mirror of https://github.com/AMT-Cheif/Stylet.git
11 lines
677 B
XML
11 lines
677 B
XML
<Window x:Class="StyletIntegrationTests.WindowDisplayNameBound.WindowView"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:s="http://github.com/canton7/Stylet"
|
|
Title="WindowView" Height="300" Width="300">
|
|
<DockPanel Margin="10" LastChildFill="False">
|
|
<TextBlock DockPanel.Dock="Top" TextWrapping="WrapWithOverflow">Press the button, and verify that the count in the window title increases. When you are done, close the window.</TextBlock>
|
|
<Button DockPanel.Dock="Top" Command="{s:Action AddCount}">Press Me</Button>
|
|
</DockPanel>
|
|
</Window>
|