Form Form1 {
…
Label Label3 {
…
}
…
/*xmlで記述したメニュー構成をxmlDocumentクラスに読込む*/
var x = new xmlDocument();
x << xml <<-
<?xml version="1.0" encoding="SHIFT_JIS"?>
<menudefine>
<menu title="ファイル">
<menuitem id="11" title="トップ" />
<separator />
<menuitem id="12" title="設定" />
<menuitem id="13" title="終了" />
</menu>
…
</menudefine>
->>;
if ( !$DESIGNTIME ) {
/*メニューにセット*/
var id = //.SetMenu(x);
}
}
…
|