fnewform.form

来自「Gambas is a graphical development enviro」· FORM 代码 · 共 73 行

FORM
73
字号
# Gambas Form File 1.0{ FNewForm Form  Move(318,246,510,465)  Text = ("New form")  Icon = Picture["img/16/form.png"]  Border = Window.Fixed  { btnOK Button    Move(320,432,88,24)    Text = ("OK")    Default = True  }  { tabAdd TabStrip    Move(8,8,496,416)    Count = 2    Index = 0    Text = ("New")    { txtFile TextBox      Move(16,40,400,24)      Font = Font["12"]      Text = ("")    }    { chkStartup CheckBox      Move(16,112,240,16)      Text = ("&Startup class")    }    { chkInit CheckBox      Move(16,208,240,16)      Text = ("Static co&nstructor")    }    { chkExit CheckBox      Move(16,232,240,16)      Text = ("Static des&tructor")    }    { chkFree CheckBox      Move(16,184,240,16)      Text = ("&Destructor")    }    { chkNew CheckBox      Move(16,160,240,16)      Text = ("&Constructor")    }    { Image1 PictureBox      Move(432,16,48,48)      Picture = Picture["img/32/form.png"]      Stretch = True      Alignment = Align.Center    }    { chkDialog CheckBox      Move(16,136,376,16)      Text = ("Default dialo&g management")    }    { 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  }  { btnCancel Button    Move(416,432,88,24)    Text = ("Cancel")    Cancel = True  }}

⌨️ 快捷键说明

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