fnewtext.form

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

FORM
56
字号
# Gambas Form File 1.0{ FNewText Form  Move(279,203,513,465)  Text = ("New text file")  Icon = Picture["img/16/text.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")    { Image1 PictureBox      Move(432,16,48,48)      Picture = Picture["img/32/text.png"]      Stretch = True      Alignment = Align.Center    }    { txtFile TextBox      Move(24,40,392,24)      Font = Font["12"]      Text = ("")    }    { Label1 Label      Move(16,8,176,24)      Font = Font["Bold"]      Text = ("Name")    }    { Label3 Label      Move(16,80,176,24)      Font = Font["Bold"]      Text = ("Destination folder")    }    { lblDest Label      Move(24,112,456,256)      Visible = False      Text = ("")      Alignment = Align.TopLeft      Border = Border.Plain    }    Index = 1    Text = ("Existing")    Index = 0  }}

⌨️ 快捷键说明

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