Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 jForm 中添加了一个 TextPane。该表单有一个菜单栏,但菜单显示在 TextPane 的背面。我该如何解决?
我假设您的意思是 a JFrame,而不是 a JForm(无论如何)。不要粗鲁,但如果你甚至不能告诉我们你正在使用的对象,你可能不会得到太多的帮助。
JFrame
JForm
那么,您是否在初始化代码中执行以下操作:
JFrame frame = new JFrame("Blah"); frame.setJMenuBar(new JMenuBar()); frame.setContentPane(new JTextPane());
我new在这里使用对象,但它们可以是局部变量或成员变量。
new