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

📄 fnewclass.form

📁 Gambas is a graphical development environment based on a Basic interpreter, like Visual Basic. It us
💻 FORM
字号:
# Gambas Form File 1.0{ FNewClass Form  Move(343,86,513,465)  Text = ("New class")  Icon = Picture["img/16/class.png"]  Border = Window.Fixed  { btnOK Button    Move(320,432,88,24)    Text = ("OK")    Default = True  }  { btnCancel Button    Move(416,432,88,24)    Text = ("Cancel")    Cancel = True  }  { tabAdd TabStrip    Move(8,8,496,416)    Count = 2    Index = 0    Text = ("New")    { chkStartup CheckBox      Move(16,112,240,16)      Text = ("&Startup class")    }    { chkInit CheckBox      Move(16,184,240,16)      Text = ("Static co&nstructor")    }    { chkExit CheckBox      Move(16,208,240,16)      Text = ("Static des&tructor")    }    { Image1 PictureBox      Move(432,16,48,48)      Picture = Picture["img/32/class.png"]      Stretch = True      Alignment = Align.Center    }    { txtFile TextBox      Move(16,40,400,24)      Font = Font["12"]      Text = ("")    }    { chkFree CheckBox      Move(16,160,240,16)      Text = ("&Destructor")    }    { chkNew CheckBox      Move(16,136,240,16)      Text = ("&Constructor")    }    { Label1 Label      Move(8,8,176,24)      Font = Font["Bold"]      Text = ("Name")    }    { Label2 Label      Move(8,80,176,24)      Font = Font["Bold"]      Text = ("Options")    }    Index = 1    Text = ("Existing")    Index = 0  }}

⌨️ 快捷键说明

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