我需要一种方法在WPF(C#)(垂直和/或水平)的组框中设置几个按钮。
我使用了stackPanel,但我的按钮粘在一起:(
答案 0 :(得分:1)
你可以将所有按钮包裹在网格或堆叠面板中,并设置像这样的对齐属性..
<Grid>
<GroupBox Margin="10,10,10,10" FontSize="16" FontWeight="Bold" VerticalAlignment="Stretch"
Background="LightGray">
<GroupBox.Header>
Mindcracker Network
</GroupBox.Header>
<StackPanel VerticalAlignment="Center" HorizontalAlignment="Center">
<Button Content="hello1" Width="100" Margin="5" />
<Button Content="hello2" Width="100" Margin="5" />
<Button Content="hello3" Width="100" Margin="5" />
<Button Content="hello4" Width="100" Margin="5" />
</StackPanel>
</GroupBox>
</Grid>