Skip to content

Instantly share code, notes, and snippets.

@kkozmic
Created November 30, 2009 20:13
Show Gist options
  • Save kkozmic/245701 to your computer and use it in GitHub Desktop.
Save kkozmic/245701 to your computer and use it in GitHub Desktop.
<Window x:Class="TypeWrapping.WpfSample.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1" Height="300" Width="300">
<Grid>
<StackPanel Width="200" Name="Foo">
<TextBox Text="{Binding InputText, Mode=TwoWay}"></TextBox>
<Button Command="{Binding UpdateCommand}" Margin="0,3,0,3">Click Here</Button>
<TextBlock Text="{Binding OutputText}"></TextBlock>
</StackPanel>
</Grid>
</Window>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment