Dialog Dialog1 {
Title = "Dialog1";
Form Form1 {
Width = 336;
Height = 278;
Label Label1 {
X = 9;
Y = 55;
Width = 313;
Height = 83;
Value = "ダイアログ画面の「×」ボタン(Android端末の";
Value += "場合は\r\n戻るボタン)押下時に";
Value += "ダイアログ画面が閉じます。\r\nメイン画面を";
Value += "タップしてもダイアログ画面は閉じません。";
BgColor = $WHITE;
}
}
Function OnClose( e ) {
if (e.CauseClose != Dialog.CLOSE_ON_TOUCH_OUTSIDE) {
/* ダイアログ外のタップ以外であれば、
ダイアログ画面を閉じる */
^.Dialog1.Delete();
}
}
}
|