的actionPerformed方法當JButton
被添加到內容窗格中,我們可以通過設置一個動作雙擊或右單擊 - >事件 - >動作 - > actionPerformed.Let比方說,我們設置財產以後按鈕發生。然後,我們需要刪除該函數。可以通過刪除我們在該buttton的actionPerformed中編寫的代碼輕鬆完成該操作。但問題是,該按鈕的actionPerformed方法仍然存在,即使它不再使用,也不需要。如何刪除在NetBeans
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
//no function here.. but this code is still remaining. need to remove this code part as well
}
它怎麼被刪除?我以JButton爲例。其他組件的操作方法就是這樣。
感謝它的工作:) –
在Netbeans 7.2.1,由於某種原因,我沒有''選項。刪除值(使字段爲空)雖然工作。 –
Lekensteyn