Files
DeedyDesigner/DeedyDesigner/Deedy.Testing/WindowHeaderTest.xaml
2025-09-29 17:15:26 +08:00

21 lines
956 B
XML

<Window x:Class="Deedy.Testing.WindowHeaderTest"
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:Deedy.Testing"
xmlns:deedy="clr-namespace:Deedy;assembly=Deedy.Wpf"
mc:Ignorable="d"
Title="WindowHeaderTest" Height="450" Width="800" Foreground="White" FontSize="18" d:WindowStyle="None" Icon="/Icons/Icon.png">
<DockPanel>
<deedy:WindowHeader ButtonBase.Click="WindowHeader_Click">
<UniformGrid Rows="1">
<Button Content="按钮"/>
<Button Content="按钮"/>
<Button Content="按钮"/>
</UniformGrid>
</deedy:WindowHeader>
<Grid/>
</DockPanel>
</Window>