将 jCombobox 按钮移至左侧

发布于 2024-12-20 10:12:00 字数 170 浏览 3 评论 0原文

我有一个 jCombobox,我想将用于显示选项的按钮移到左侧。知道如何做到这一点吗?

---------------------------
|\/ |Combobox             |
--------------------------

谢谢

I have a jCombobox and i want to move the button used to display the choices to the left. Any idea of how to do this?

---------------------------
|\/ |Combobox             |
--------------------------

thanks

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

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

发布评论

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

评论(1

聊慰 2024-12-27 10:12:00

您可以在 JComboBox 上调用它:

jComboBox.setComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT);

这应该将按钮设置在左侧。但是,它不会更改下拉列表中元素的对齐方式。

You could call this on the JComboBox:

jComboBox.setComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT);

That should set the button to the left side. It will not, however, change the alignment of the elements in the drop-down-list.

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