Plane.Libraries/Plane.WpfTests/MainWindow.xaml

30 lines
1.1 KiB
Plaintext
Raw Permalink Normal View History

2017-02-27 02:04:13 +08:00
<Window x:Class="Plane.WpfTests.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:Plane.WpfTests"
mc:Ignorable="d"
Title="MainWindow"
Height="350"
Width="525">
<WrapPanel>
<WrapPanel.Resources>
<Style TargetType="Button">
<Setter Property="HorizontalAlignment"
Value="Center" />
<Setter Property="Margin"
Value="5" />
<Setter Property="Padding"
Value="10,3" />
</Style>
</WrapPanel.Resources>
<Button x:Name="btnTestAlert"
Content="Alert"
Click="btnTestAlert_Click" />
<Button x:Name="btnTestAlert2"
Content="Alert2"
Click="btnTestAlert2_Click" />
</WrapPanel>
</Window>