12345678910111213141516171819 |
- <Window x:Class="Test.Message.WinMessage"
- 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:Test.Message"
- mc:Ignorable="d"
- Title="WinMessage" Height="450" Width="800">
- <Grid Margin="5">
- <Grid.RowDefinitions>
- <RowDefinition></RowDefinition>
- <RowDefinition ></RowDefinition>
- <RowDefinition ></RowDefinition>
- </Grid.RowDefinitions>
- <Button Content="系统" Click="Button_Click_1"></Button>
- <Button Grid.Row="1" Content="自定义" Click="Button_Click_2"></Button>
- <Button Grid.Row="2" Content="自动父级" Click="Button_Click_3"></Button>
- </Grid>
- </Window>
|