您好,我想问问如何使用组合框,因为我需要更改复选框标题。
我得到诺基亚,三星在下拉列表上。然后3个复选框。因此,如果我单击诺基亚,我想查看3个诺基亚chkbox。以此类推。我知道这很简单,但是很难知道方法。我是视觉基本用户,所以有点困难。请简化一下,我正在使用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");

}                  `

最佳答案

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

10-08 01:57