2014-02-22 07:07:52 -08:00
|
|
|
<Window x:Class="Stylet.Samples.Hello.ShellView"
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
2014-04-23 09:47:42 -07:00
|
|
|
xmlns:s="https://github.com/canton7/Stylet"
|
2014-02-22 07:07:52 -08:00
|
|
|
Height="300" Width="300">
|
|
|
|
<StackPanel>
|
2014-03-03 13:58:19 -08:00
|
|
|
<TextBox Text="{Binding Name, UpdateSourceTrigger=PropertyChanged}"/>
|
2014-02-22 07:07:52 -08:00
|
|
|
<Button Command="{s:Action SayHello}">Say Hello</Button>
|
|
|
|
</StackPanel>
|
|
|
|
</Window>
|