border控件不是布局面板,他是一个便于使用的元素,经常与布局面板一起使用
background 背景
borderBrush 设置边缘颜色
cornerRadius 圆角
padding 内间距
<Window x:Class="WpfApplication1.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="MainWindow" Height="350" Width="525"> <Border Margin="10" Padding="20" Background="Aqua" BorderBrush="Black" CornerRadius="5"> <StackPanel Orientation="Vertical"> <Label HorizontalAlignment="Center">title</Label> <Button Margin="5" MinWidth="100" MaxWidth="300">btn1</Button> <Button Margin="5" MinWidth="100" MaxWidth="300">btn2</Button> <Button Margin="5" MinWidth="100" MaxWidth="300">btn3</Button> </StackPanel> </Border> </Window>