⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 recordingsdlg.gui

📁 此为游戏源码 是很好 的学习工具阿
💻 GUI
字号:
//--- OBJECT WRITE BEGIN ---
new GuiControl(recordingsDlg) {
   profile = "GuiDefaultProfile";
   horizSizing = "right";
   vertSizing = "bottom";
   position = "0 0";
   extent = "640 480";
   minExtent = "8 8";
   visible = "1";
   helpTag = "0";

   new GuiWindowCtrl() {
      profile = "GuiWindowProfile";
      horizSizing = "center";
      vertSizing = "center";
      position = "55 65";
      extent = "530 338";
      minExtent = "48 92";
      visible = "1";
      helpTag = "0";
      text = "Demo Recordings";
      maxLength = "255";
      resizeWidth = "0";
      resizeHeight = "0";
      canMove = "1";
      canClose = "1";
      canMinimize = "0";
      canMaximize = "0";
      minSize = "50 50";
      closeCommand = "Canvas.popDialog(recordingsDlg);";

      new GuiScrollCtrl() {
         profile = "GuiScrollProfile";
         horizSizing = "right";
         vertSizing = "bottom";
         position = "23 37";
         extent = "484 260";
         minExtent = "32 32";
         visible = "1";
         helpTag = "0";
         willFirstRespond = "1";
         hScrollBar = "dynamic";
         vScrollBar = "alwaysOn";
         constantThumbHeight = "0";
         childMargin = "0 0";
         defaultLineHeight = "15";

         new GuiTextListCtrl(RecordingsDlgList) {
            profile = "GuiTextArrayProfile";
            horizSizing = "right";
            vertSizing = "bottom";
            position = "2 2";
            extent = "462 20";
            minExtent = "8 20";
            visible = "1";
            helpTag = "0";
            enumerate = "0";
            columns = "0";
            resizeCell = "1";
            fitParentWidth = "1";
            clipColumnText = "0";
            noDuplicates = "false";
         };
      };
      new GuiButtonCtrl(DR_CancelBtn) {
         profile = "GuiButtonProfile";
         horizSizing = "right";
         vertSizing = "top";
         position = "396 306";
         extent = "110 20";
         minExtent = "8 8";
         visible = "1";
         command = "Canvas.popDialog(recordingsDlg);";
         accelerator = "escape";
         helpTag = "0";
         text = "Cancel";
         groupNum = "-1";
         buttonType = "PushButton";
      };
      new GuiButtonCtrl(DR_StartDemoBtn) {
         profile = "GuiButtonProfile";
         horizSizing = "right";
         vertSizing = "top";
         position = "25 305";
         extent = "110 20";
         minExtent = "8 8";
         visible = "1";
         command = "StartSelectedDemo();";
         helpTag = "0";
         text = "Play";
         groupNum = "-1";
         buttonType = "PushButton";
      };
   };
};
//--- OBJECT WRITE END ---

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -