JLabel 宽度与文本长度无关
我在水平调整大小的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试以下操作:
Try following:
使用不同的布局或在 JLabel 上设置最大尺寸。
Use a different layout or set a max size on the JLabel.
当您定义最大尺寸和首选尺寸时,您需要禁用“水平可调整大小”
You need to disable 'Horizontal Resizable' when you define a max- and preferedsize