1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13:
| <Window x:Class="MVVM.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="MainWindow" Height="350" Width="525"> <Grid> <TextBox HorizontalAlignment="Left" Height="23" Margin="188,34,0,0" TextWrapping="Wrap" Text="{Binding Name}" VerticalAlignment="Top" Width="120"/> <Button Content="1" HorizontalAlignment="Left" Margin="215,185,0,0" VerticalAlignment="Top" Width="75"/>
</Grid> </Window> |