| 1234567891011121314151617181920212223242526272829 |
- <Page x:Class="MvvmScaffoldFrame48.WPFPage.TestPage"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:MvvmScaffoldFrame48.WPFPage"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800"
- Title="TestPage">
- <Grid Cursor="Hand">
- <StackPanel Grid.Column="0" Margin="0,0,0,50">
- <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>
- </Page>
|