我正在尝试获取和操作事件以在我的 HelloWorld 上触发。我正在使用 GUI,当它自动创建时:
protected void onMain_Button1Action(Component c, ActionEvent event) {
// If the resource file changes the names of components this call will break notifying you that you should fix the code
super.onMain_Button1Action(c,event);
}
我知道它不会起作用,因为超类中没有相同类型的 void。
protected void onMain_Button1Action(Component c, ActionEvent event) {
// If the resource file changes the names of components this call will break notifying you that you should fix the code
Dialog.show("Test", "it works", "OK",null);
}
我仍然一无所获。我已经寻找其他关于如何使用代号的教程,但我找不到任何。我没有得到作者制作的那个。如果有人可以给我一条线,我将不胜感激。