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 つとして使用する方法に関する他のチュートリアルを探しましたが、見つかりません。そして、私は作者が作ったものを手に入れません。誰かが私にラインを投げることができれば、私は最も感謝しています.