1
我想創建的程序有問題。 我是編程初學者,所以你能幫我嗎?從ComboBox的內容中獲取變量
那麼,我想採取ComboBox
這是一個void
方法內的內容,並在另一個類中使用它。
那是組合框: ** ** **
JComboBox ActionComboBox = new JComboBox();
ActionComboBox.addItem("Text");
ActionComboBox.addItem("text2");
ActionComboBox.addItem("text3");
ActionComboBox.setToolTipText("");
ActionComboBox.setBounds(253, 96, 103, 20);
frame.getContentPane().add(ActionComboBox);
** ** **
我想使用ComboBox
的內容從void
方法,在另一個類的方法中,我使用該代碼來做到這一點:
(我也導入(類的名稱))
** **
private String Action()
{
String actionBox = ActionComboBox.getSelectedItem();
return actionBox;
}
** **
好了,節目說:: ActionComboBox
解決不了! 作爲錯誤。
我該怎麼辦?
謝謝
哦,謝謝你隊友幫助了我很多! 你也幫我理解了一些東西:) – darkagandal
@darkagandal你很受歡迎! ^^ –