我想再次进入
java(已经是几年了).我从来没有在java中做任何GUI编码.我一直在使用Netbeans来开始这个.
当在C#中使用winforms时,我使用用户控件来构建我的UI部分,并将它们动态添加到表单中.
我一直在尝试在C#中使用像usercontrols这样的JPanels.我创建了一个名为BlurbEditor的JPanel表单.这有一些简单的控制.我正在尝试在运行时将其添加到另一个面板上的按钮事件.
这是我以为会工作的代码:
mainPanel.add(new BlurbEditor()); mainPanel.revalidate(); //I've also tried all possible combinations of these too //mainPanel.repaint(); //mainPanel.validate();
不幸的是,这不行.我究竟做错了什么?
解决方法
我想到了.在这里接受答案的意见解释:
Dynamically added JTable not displaying
Dynamically added JTable not displaying
基本上我刚刚在mainPanel.add()之前添加了以下内容,
mainPanel.setLayout(new java.awt.BorderLayout());