JTextPane 是 JScrollPane 可接受的客户端吗?
我让 JTextArea 使用 JScrollPane 提供的滚动条。按照这种模式,我无法让 JTextPane 显示滚动条。
本质上,我将文本附加到 JScrollPane,如下所示:
myJScrollPane.setViewportView(myJTextArea); // does not work with myJTextPane,
// an instance of JTextPane
没有抛出异常,水平和垂直的滚动条根本不会出现。
I have JTextArea working with scroll bars provided by JScrollPane. Following that pattern I have not been able to get JTextPane to show up with scroll bars.
Essentially I attach text to the JScrollPane as follows:
myJScrollPane.setViewportView(myJTextArea); // does not work with myJTextPane,
// an instance of JTextPane
No exception is thrown, the scroll bars, both horizontal and vertical simply do not appear.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试
Try
检查是否未调用 setPreferredSize() 以及是否未为 JTextPane 设置首选大小。
Check whether setPreferredSize() was not called and preferred size isn't set for the JTextPane.