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);
}

そして、私はまだ何も得ていません。コードネームを 1 つとして使用する方法に関する他のチュートリアルを探しましたが、見つかりません。そして、私は作者が作ったものを手に入れません。誰かが私にラインを投げることができれば、私は最も感謝しています.

4

1 に答える 1

1

リソース ファイルをデザイナに保存する必要があります。super への呼び出しは削除しないでください。Eclipse を使用している場合は、F5 を使用してデザイナーに保存した後、プロジェクトを更新する必要があります。

于 2013-04-10T17:12:25.867 に答える