如何在Java中创建垂直制表符?

发布于 2024-11-15 18:07:53 字数 79 浏览 5 评论 0原文

我想获得像 JTabbedPane 逆时针旋转 90 度的效果(只有选项卡,而不是选项卡内的内容)。在 Java 中实现这一点的最佳方法是什么?

I would like to get the effect like if JTabbedPane would be turned 90 degrees counterclockwise (only tabs but not the content inside tabs). What is the best way to implement that in Java?

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

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

发布评论

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

评论(5

甜中书 2024-11-22 18:07:53

在此解决方案中:

http://oreilly.com/pub/a /mac/2002/03/22/vertical_text.html

文本垂直绘制并尝试作为选项卡上的图标。这样您就不必修改 JTabbedPane,只需在选项卡中使用自定义图标即可。

当然,您还必须指定选项卡位置位于左侧。

In this solution:

http://oreilly.com/pub/a/mac/2002/03/22/vertical_text.html

The text was painted vertically and tried as an icon on the tab. This way you don't have to modify JTabbedPane you just use a custom Icon in the tab.

Of course you would also have to specify the tab placement to be on the Left.

木緿 2024-11-22 18:07:53

您可以尝试 setTabPlacement(SwingConstants.LEFT)此组件

You can try setTabPlacement(SwingConstants.LEFT) or this component

音盲 2024-11-22 18:07:53

作为替代方案,请考虑 JToolBarBorderLayoutEASTWESTorientation 设置为 VERTICAL代码>.在按钮的旋转文本相当简单>图标

As an alternative, consider JToolBar with orientation set to VERTICAL in a BorderLayout, EAST or WEST. It's fairly easy rotate text in the button's Icon.

眼眸里的快感 2024-11-22 18:07:53

您可以尝试扩展 tabpane 类,在重载的绘制方法中,获取图形对象,假设 g2d 是重载的绘制方法的参数:

super(g2d.rotate(Pi/2));

作为启动器

You could try and extend the tabpane class, in the overloaded paint method, get the graphics object, say g2d is the argument of the overloaded paint method:

super(g2d.rotate(Pi/2));

as a starter

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