如何将可滚动的 JTextArea 添加到 jDesktopPane
我尝试了几种意见,但都不起作用。
此方法返回 JTextArea
private static JTextArea getJArea() {
if (jArea == null) {
jArea = new JTextArea();
jArea.setBounds(new Rectangle(16, 153, 468, 139));
jArea.setVisible(true);
jArea.setLineWrap(true);
jArea.setWrapStyleWord(true);
jArea.setEditable(false);
jsp.getViewport().add(jArea);
}
return jArea;
}
和 JDesktopPane 我用此代码片段添加此区域
jDesktopPane.add(getJArea(), null);
这不起作用,我尝试创建一个 JScrollPane 并将 JTextArea 分配给他并将其添加到 JDesktopPane,但这也不起作用。
I was try several opinion but neither of them it seams to work.
This method returns JTextArea
private static JTextArea getJArea() {
if (jArea == null) {
jArea = new JTextArea();
jArea.setBounds(new Rectangle(16, 153, 468, 139));
jArea.setVisible(true);
jArea.setLineWrap(true);
jArea.setWrapStyleWord(true);
jArea.setEditable(false);
jsp.getViewport().add(jArea);
}
return jArea;
}
and i JDesktopPane i add this area with this code snippet
jDesktopPane.add(getJArea(), null);
And this not work, I was try to create a JScrollPane and assign JTextArea to him and add that to the JDesktopPane, but that also doesn't work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使用
JInternalFrame
也是。JDesktopPane
应该是JInternalFrame
对象的父容器。然后将
JDesktopPane
添加到例如JFrame
中,就完成了。You need to use
JInternalFrame
too.JDesktopPane
is supposed to be parent container forJInternalFrame
objects.Then add the
JDesktopPane
to e.g.JFrame
and you are done.