0

我正在尝试获取和操作事件以在我的 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);
}

我仍然一无所获。我已经寻找其他关于如何使用代号的教程,但我找不到任何。我没有得到作者制作的那个。如果有人可以给我一条线,我将不胜感激。

4

1 回答 1

1

您需要将资源文件保存在设计器中,而不是删除对 super 的调用。如果您使用的是 Eclipse,您应该在使用 F5 保存在设计器中后刷新项目。

于 2013-04-10T17:12:25.867 回答