WPF更改文本框的左边距
我想通过 XAML 更改 WPF 文本框的左边距:
此代码显然不起作用:
<TextBox Margin.Left ="0"/>
正确的代码是什么,这里有人知道吗?
问候, 麦德塞布
I want to change the just the left margin of a WPF textbox via XAML:
This code obviously does not work :
<TextBox Margin.Left ="0"/>
What would be the correct code, does anyone here know ?
Regards,
MadSeb
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我看不到你的代码 - 但它通常会这样:
第一个数字是左边,然后是顶部,然后是右边,最后是底部边距。
希望这有帮助!
I can't see your code - but it would normally go like this:
First number is left, then top, then right and finally bottom margin.
Hope this helps!