快捷键:Ctril+d复制一行
容器控件
- Grid
- StackPanel:空间不够不能重新排列
<StackPanel Orientation="Horizontal">
<Button Width="100" Height="40"></Button>
<Button Width="100" Height="40"></Button>
<Button Width="100" Height="40"></Button>
<Button Width="100" Height="40"></Button>
<Button Width="100" Height="40"></Button>
<Button Width="100" Height="40"></Button>
</StackPanel>
- WrapPanel:空间不够的时候可以自动重新排列
<WrapPanel Orientation="Vertical">
<Button Width="100" Height="40"></Button>
<Button Width="100" Height="40"></Button>
<Button Width="100" Height="40"></Button>
<Button Width="100" Height="40"></Button>
<Button Width="100" Height="40"></Button>
<Button Width="100" Height="40"><