我做了一個對話框,其中有一些按鈕。代碼名稱1中按鈕動作的關閉對話框
按鈕之一的動作我想完成對話框。
我不想在其中添加任何命令。
請幫忙。
這是我的代碼。
Form form = (Form) createContainer("/theme", "MYDialog1");
Container container = (Container) findByName("Container", form);
button = new Button(new Command("Close"),i));
try
{
button.setUIID("LabelButton");
}
catch (Exception exception)
{
exception.printStackTrace();
}
button.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent evt)
{
??????
}
});
container.addComponent(button);
Dialog.show("", form, null);