combobox get拖放选中

时间:2013-10-05 13:20:03

标签: java events jcombobox

嗨我想询问如何使用组合框,因为我需要更改复选框标题。 我得到诺基亚,三星在下降。然后3个复选框。所以,如果我点击诺基亚,我想看到3个诺基亚chkboxes。如果三星,等等。我知道这很简单,但很难知道方法。我是一个视觉基本用户,所以它有点难。请简单,我使用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");

}                  `

1 个答案:

答案 0 :(得分:1)

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