-5

谁能给我指导以解决保证金问题?我是 XAML 的新手。我对左、上、右、下感到困惑

感谢您的任何建议。

4

2 回答 2

1

请参阅此 MSDN 文档:

框架元素边距

于 2013-09-19T09:21:34.643 回答
0

边距由左、上、右、下设置您可以为所有角度设置一个值,也可以指定每个角度。

//SETS A MARGIN OF 10px in all four directions
<Grid margin="10"></Grid>

//SETS A 10px margin left, 15px margin top, 10px margin right and 15px bottom 
<Grid margin="10, 15, 10, 15"></grid>
于 2013-09-19T10:47:45.370 回答