WPF 中的右对齐菜单项
我可以在 WPF 中右对齐菜单项吗?
谢谢 萨拉特
Can i right align the menu items in WPF?
Thanks
Sharath
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我可以在 WPF 中右对齐菜单项吗?
谢谢 萨拉特
Can i right align the menu items in WPF?
Thanks
Sharath
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
是的你可以。
虽然实施起来有点棘手。
如果您希望顶部菜单中的菜单项从右向左排列,请将 FlowDirection="RightToLeft" 添加到菜单中。
如果您希望下拉列表中的某个项目右对齐,请执行以下操作:
如果您想同时执行这两项操作,则实际上必须设置 HorizontalAlignment="Left" 而不是右对齐,因为 FlowDirection 会颠倒对齐方式中的右对齐和左对齐。 我不知道为什么,但这就是你必须做的。
Yes, you can.
Although the implementation is a little screwy.
If you want to have the menu items in the top menu go from right to left, add FlowDirection="RightToLeft" to your Menu.
If you want to have an item aligned right in a dropdown, do the following:
If you want to do both, you actually have to set HorizontalAlignment="Left" instead of right, as the FlowDirection reverses the right and left in the Alignments. I don't know why, but that's what you have to do.
如何右对齐“帮助” WPF 中的菜单项?
我喜欢网格方式的第二个答案。
How do I right-align the 'help' menu item in WPF?
I like the second answer with the grid way.