我有一个 jframe,它的 jcmbobox 具有三个状态(三个项目,从 0 到 2)。
我想当用户选择第二个项目(1)时我的 jlabel 应该显示!
但是现在,当我选择第二个项目时,不要显示它!
public class LoginFrame extends javax.swing.JFrame {
public LoginFrame() {
initComponents();
this.setTitle("Library Management System Login");
this.setLocation(300, 50);
this.setResizable(false);
if (jComboBox1.getSelectedIndex() == 1) {
jLabel4.setVisible(true);
}
else{
jLabel4.setVisible(false);
}
}
我在 IDE 菜单中选择的索引号是 0。