在 JTextpane 中切换文本换行
我将如何在 JTextpane
上切换文本换行?
public JFrame mainjFrame = new JFrame("Text Editor");
public JTextPane mainJTextPane = new JTextPane();
public JScrollPane mainJScrollPane = new JScrollPane(mainJTextPane);
mainjFrame.add(mainJScrollPane);
How would I go about toggling text wrap on a JTextpane
?
public JFrame mainjFrame = new JFrame("Text Editor");
public JTextPane mainJTextPane = new JTextPane();
public JScrollPane mainJScrollPane = new JScrollPane(mainJTextPane);
mainjFrame.add(mainJScrollPane);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请参阅无换行文本窗格。
编辑:
好吧,如果您想切换行为,那么您还需要切换 getScrollableTracksViewportWidth() 值。请参阅可滚动面板。您应该能够在 FIT 和 STRETCH 之间切换。
See No Wrap Text Pane.
Edit:
Well, if you want to toggle the behaviour, then you would also need to toggle the getScrollableTracksViewportWidth() value. See Scrollable Panel. You should be able to toggle between FIT and STRETCH.
我不知道还有什么其他方法可以满足您的需求。
但是这种方法效果很好。
(基于 camickr 的回答.. +1 )
I don't know any other way for what you are looking for..
But this is working well.
( Based on camickr's answer.. +1 )