我正在使用 NetBeans IDE 开发 Swing 应用程序,在 JDialog 窗口中,我正在尝试使用 netbeans 添加的一些组件以及其他动态添加的组件,但是当我尝试使用 initComponents 添加组件时它没有显示的代码。
编码:
public RegrasUsuarioDialog(java.awt.Frame parent, boolean modal) {
super(parent, "Preferências de conversão", modal);
//initComponents();
JRadioButton radioButton = new JRadioButton("Radio Button");
optionsPanel = new JPanel(new GridLayout(0, 1));
add(optionsPanel, BorderLayout.LINE_START);
optionsPanel.add(radioButton);
}
当我取消注释 initComponents() 方法并注释:
optionsPanel = new JPanel(new GridLayout(0, 1));
add(optionsPanel, BorderLayout.LINE_START);
让 Netbeans 代码创建它不起作用的基本组件。