WPF-Base/WPF基础-5-DockPanel2/MainWindow.xaml

17 lines
955 B
XML

<Window x:Class="WPF基础_5_DockPanel2.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="800">
<DockPanel LastChildFill="True">
<Button DockPanel.Dock="Top">顶部的按钮</Button>
<Button DockPanel.Dock="Top" HorizontalAlignment="Center">顶部的按钮-但是居中</Button>
<Button DockPanel.Dock="Top" HorizontalAlignment="Left">顶部的按钮-靠左</Button>
<Button DockPanel.Dock="Bottom">底部的按钮</Button>
<Button DockPanel.Dock="Left">靠左</Button>
<Button DockPanel.Dock="Right">靠右</Button>
<Button>占满空间</Button>
</DockPanel>
</Window>