WPF 中的右对齐菜单项

发布于 2024-07-19 18:01:29 字数 46 浏览 10 评论 0原文

我可以在 WPF 中右对齐菜单项吗?

谢谢 萨拉特

Can i right align the menu items in WPF?

Thanks
Sharath

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

陌路终见情 2024-07-26 18:01:29
<Menu HorizontalAlignment="Stretch" FlowDirection="RightToLeft">            
        <MenuItem HorizontalAlignment="Right" Header="aaa">
        </MenuItem>
        <MenuItem HorizontalAlignment="Right" Header="bbb">
        </MenuItem>
</Menu>
<Menu HorizontalAlignment="Stretch" FlowDirection="RightToLeft">            
        <MenuItem HorizontalAlignment="Right" Header="aaa">
        </MenuItem>
        <MenuItem HorizontalAlignment="Right" Header="bbb">
        </MenuItem>
</Menu>
十年九夏 2024-07-26 18:01:29

是的你可以。

虽然实施起来有点棘手。

如果您希望顶部菜单中的菜单项从右向左排列,请将 FlowDirection="RightToLeft" 添加到菜单中。
如果您希望下拉列表中的某个项目右对齐,请执行以下操作:

<MenuItem>
    <MenuItem.Header>
        <TextBlock HorizontalAlignment="Right" >Content</TextBlock>
    </MenuItem.Header>
</MenuItem>

如果您想同时执行这两项操作,则实际上必须设置 Horizo​​ntalAlignment="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:

<MenuItem>
    <MenuItem.Header>
        <TextBlock HorizontalAlignment="Right" >Content</TextBlock>
    </MenuItem.Header>
</MenuItem>

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.

鲜血染红嫁衣 2024-07-26 18:01:29

如何右对齐“帮助” WPF 中的菜单项?

我喜欢网格方式的第二个答案。

How do I right-align the 'help' menu item in WPF?

I like the second answer with the grid way.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文