📄 rightmenu.gui
字号:
//===================================================================
//
// TGE DemoGui by Kenneth 'Gonzo' Harvey
//
//===================================================================
//--- OBJECT WRITE BEGIN ---
new GuiControl(DemoGui) {
profile = "GuiDefaultProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "0 0";
extent = "800 600";
minExtent = "8 2";
visible = "1";
new GuiControl(MainCTRL) {
profile = "GuiDefaultProfile";
horizSizing = "center";
vertSizing = "center";
position = "0 0";
extent = "445 158";
minExtent = "8 2";
visible = "1";
new GuiButtonCtrl() {
profile = "GuiButtonProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "0 0";
extent = "80 16";
minExtent = "8 2";
visible = "1";
command = "DemoGui.action(EXIT);";
accelerator = "return";
text = "Trad";
groupNum = "-1";
buttonType = "PushButton";
};
};
};
//--- OBJECT WRITE END ---
function DemoGui::action(%this, %action)
{
switch$(%action)
{
case "SHOW":
case "HIDE":
case "EXIT":
Canvas.popDialog(DemoGui);
}
}
function DemoGui::onWake(%this)
{
MainCTRL.position=$mousepos;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -