fnewtable.form

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

FORM
51
字号
# Gambas Form File 1.0{ FNewTable Form  Move(376,296,352,177)  Text = ("")  Border = Window.Fixed  { lblType Label    Move(96,96,248,24)    Text = ("Label3")    Border = Border.Raised  }  { txtName TextBox    Move(96,64,248,24)    Text = ("")  }  { btnOK Button    Move(160,144,88,24)    Text = ("OK")    Default = True  }  { btnCancel Button    Move(256,144,88,24)    Text = ("Cancel")    Cancel = True  }  { Label1 Label    Move(8,64,80,24)    Text = ("Name")  }  { Image1 PictureBox    Move(296,8,48,48)    Picture = Picture["img/32/table.png"]    Stretch = True  }  { Label2 Label    Move(8,96,72,24)    Text = ("Type")  }  { cmbType ComboBox    Move(96,96,248,24)    Text = (" ")    ReadOnly = True    Sorted = True  }  { lblTitle Label    Move(8,8,288,40)    Font = Font["16,Bold"]    Text = ("")  }}

⌨️ 快捷键说明

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