如何在堆栈面板中添加多个按钮,按钮之间有空格

时间:2015-06-24 18:55:49

标签: wpf button alignment stackpanel

我尝试在[0]中添加几个按钮:

StackPanel

我的所有<StackPanel Orientation="Horizontal"> <Button Content="" HorizontalAlignment="Left" Margin="10,590,1,-40" VerticalAlignment="Top" RenderTransformOrigin="1.25,0.964"> </Button> <Button Content="Add" HorizontalAlignment="Left" Margin="10,590,10,-40" VerticalAlignment="Top" RenderTransformOrigin="1.25,0.964"> </Button> </StackPanel> 对齐到右侧,但没有空格。

有任何建议怎么做?

1 个答案:

答案 0 :(得分:0)

使用Margin属性....

默认为Left,Top,Right,Bottom,因此在您的示例代码中,您有Left = 10,Top = 590,Right = 1,Bottom = -40。

将左/右边距更改为合理的值。这是一些(清理过的)示例代码:

environ