JLabel 宽度与文本长度无关

发布于 2024-10-12 07:56:50 字数 235 浏览 5 评论 0原文

我在水平调整大小的 JPanel 中有一个 JLabel。 JLabel 自动调整其宽度以适合 JPanel。如果我插入一长行文本(例如“aaaaaaaaaaaaaaaaaaaaaaaa”),JLabel 不会截断文本。相反,宽度会重新调整大小以适合文本,从而导致 JPanel 的大小调整变得丑陋。

相反,我希望用省略号 (...) 截断我的文本。 JLabel 宽度不得从文本长度继承,而只能从 JPanel 宽度继承。

I have a JLabel in a horizontally re-sizable JPanel. The JLabel auto re-sizes its width to fit the JPanel. If I insert a long line of text (such as "aaaaaaaaaaaaaaaaaaaaaaaa") the JLabel doesn't truncate the text. Instead, the width re-sizes to fit the text, causing also an ugly re-sizing of the JPanel.

Instead, I want my text to be truncated with an elipse (...). The JLabel width must not inherit from the text's length but only from the JPanel width.

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

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

发布评论

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

评论(3

十年九夏 2024-10-19 07:56:50

尝试以下操作:

final JLabel label = ...
...
label.setText("prototype text to define size");
final Dimension size = label.getPreferredSize();
label.setMinimumSize(size);
label.setPreferredSize(size);
...
label.setText(...);

Try following:

final JLabel label = ...
...
label.setText("prototype text to define size");
final Dimension size = label.getPreferredSize();
label.setMinimumSize(size);
label.setPreferredSize(size);
...
label.setText(...);
各空 2024-10-19 07:56:50

使用不同的布局或在 JLabel 上设置最大尺寸。

Use a different layout or set a max size on the JLabel.

云淡月浅 2024-10-19 07:56:50

当您定义最大尺寸和首选尺寸时,您需要禁用“水平可调整大小”

You need to disable 'Horizontal Resizable' when you define a max- and preferedsize

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