32 lines
1.7 KiB
XML
32 lines
1.7 KiB
XML
<Window x:Class="WPF基础_4_WrapPanel.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">
|
|
<Grid>
|
|
<Border Margin="5" Padding="8" CornerRadius="8" Background="Aquamarine" BorderBrush="Red" BorderThickness="5"
|
|
VerticalAlignment="Top">
|
|
<WrapPanel Margin="3" Orientation="Horizontal" HorizontalAlignment="Center">
|
|
<Label Content="水平方向" />
|
|
<Button VerticalAlignment="Top">VerticalAlignment="Top"</Button>
|
|
<Button MinHeight="60">MinHeight="60"</Button>
|
|
<Button>拉长按钮 会根据最大高度进行拉长</Button>
|
|
<Button VerticalAlignment="Center">VerticalAlignment="Center" 居中按钮</Button>
|
|
</WrapPanel>
|
|
</Border>
|
|
|
|
<Border Margin="5" Padding="8" Background="Aqua" BorderBrush="Red" BorderThickness="5" CornerRadius="8"
|
|
VerticalAlignment="Bottom">
|
|
<WrapPanel Margin="3" Orientation="Vertical" HorizontalAlignment="Center">
|
|
<Label Content="垂直方向" />
|
|
<Button VerticalAlignment="Top">VerticalAlignment="Top"</Button>
|
|
<Button MinHeight="60">MinHeight="60"</Button>
|
|
<Button>拉长按钮 会根据最大高度进行拉长</Button>
|
|
<Button VerticalAlignment="Center">VerticalAlignment="Center" 居中按钮</Button>
|
|
</WrapPanel>
|
|
</Border>
|
|
</Grid>
|
|
|
|
</Window> |