Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将填充属性用于按钮内容,我希望填充在右侧(右侧 10px)但是当我在我的 xaml 中使用填充属性时,如下所示:
Padding="0,0,10,0"
文本位于按钮的左侧(靠近左边框)。
我怎样才能向右填充?
谢谢
<Button ... Padding="0 0 10 0" HorizontalContentAlignment="Right" />
这是正确的行为。填充在您的内容和容器之间放置空间。
数字顺时针方向,从左侧开始。
如果您想看到靠近右边框的文本,请使用Padding="10,0,0,0"
Padding="10,0,0,0"