5-WPFTemplates-And-CustomEl.../5-WPF模板和自定义元素/MainWindow.xaml

12 lines
636 B
XML

<Window x:Class="_5_WPF模板和自定义元素.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"
mc:Ignorable="d"
Title="MainWindow" Height="450" Width="450">
<StackPanel Margin="5">
<Button Padding="5" Margin="5" Click="ButtonBase_OnClick">第一个按钮</Button>
<Button Padding="5" Margin="5">第二个按钮</Button>
</StackPanel>
</Window>