0
私は問題が発生していない静的でないダイアログを表示しますか?
Dialog form = new Dialog("Login");
Label userL = new Label("Username");
Label passL = new Label("Password");
TextField user = new TextField();
TextField pass = new TextField();
Container c = new Container();
c.addComponent (userL);
c.addComponent (user);
c.addComponent (passL);
c.addComponent (pass);
form.addComponent (c);
form.showDialog();
を使用すると、コンテナは、ダイアログに来ているが、ダイアログ本体の内部....
誰も私を助けることができるではない????
なぜ中間コンテナを作成していますか?コンポーネントを直接ダイアログに追加する必要があります。 – Perception
私がそれをしても、結果は同じです... – aNi