| 123456789101112131415161718192021222324252627 |
- <Window x:Class="MvvmScaffoldFrame48.MainWindow"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:local="clr-namespace:MvvmScaffoldFrame48"
- mc:Ignorable="d"
- Title="MainWindow" Height="450" Width="800">
- <Grid>
- <StackPanel>
- <ToolBar>
- <Label Content="姓名:"></Label>
- <TextBox Text="{Binding Name}" Width="50"></TextBox>
- <Label Content="邮箱:"></Label>
- <TextBox Text="{Binding Email}" Width="100"></TextBox>
- <Button Content="添加"
- Command="{Binding AddUserCommand }"></Button>
- <Button Content="测试"
- Command="{Binding TestCommand }"></Button>
- </ToolBar>
- <StackPanel>
- <DataGrid ItemsSource="{Binding Users}"></DataGrid>
- </StackPanel>
- </StackPanel>
- </Grid>
- </Window>
|