28 lines
1.3 KiB
XML
28 lines
1.3 KiB
XML
<Window x:Class="WPF基础_2_StackPanel.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">
|
|
|
|
<!-- 水平,默认是横向排列 -->
|
|
<!-- VerticalAlignment 水平方向排放 -->
|
|
<!-- HorizontalAlignment 垂直方向排放 -->
|
|
<StackPanel Orientation="Horizontal">
|
|
<!-- 垂直方向 居中 -->
|
|
<Label HorizontalAlignment="Center"> 堆叠面板</Label>
|
|
<!-- 垂直方向 靠左 -->
|
|
<Button HorizontalAlignment="Left">按钮1</Button>
|
|
<!-- 垂直方向 靠右 -->
|
|
<Button HorizontalAlignment="Right">按钮2</Button>
|
|
<!-- 左上右下 -->
|
|
<Button HorizontalAlignment="Stretch" Margin="5">按钮3</Button>
|
|
<!-- 左右 上下 -->
|
|
<Button Margin="3 2 ">按钮4</Button>
|
|
<!-- 左上右下 -->
|
|
<Button Margin="5 3 5 3">按钮5</Button>
|
|
<!-- 使用代码控制 -->
|
|
<Button Name="CmdButton">代码设置</Button>
|
|
</StackPanel>
|
|
</Window> |