1

嗨,我想问一下如何使用组合框,因为我需要更改复选框标题。我有诺基亚,三星的下拉菜单。然后是 3 个复选框。所以如果我点击诺基亚,我想看到 3 个诺基亚 chkbox。等等,如果是三星。我知道这很简单,但很难知道方法。我是一个visual basic用户,所以有点难。请让它简单,我正在使用 DnD。我也使用了动作执行。

这是我现在的代码。但它不起作用,它只显示三星 chk 盒子

private void      

phoneComboActionPerformed(java.awt.event.ActionEvent evt)          {                                           
String Nokia;
String Samsung;


Nokia = (String)phoneCombo.getSelectedItem();
checkBox1.setText("Nokia E71");
checkBox2.setText("Nokia E72");
checkBox3.setText("Nokia E79");

Samsung=(String)phoneCombo.getSelectedItem();
checkBox1.setText("Samsung D780");
checkBox2.setText("Samsung D880");
checkBox3.setText("Samsung F480");

}                  `
4

1 回答 1

1

提出条件 if phoneCombo.getSelectedItem("Nokia) then // put your code here

于 2013-10-26T07:31:36.017 回答