fsave.form

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

FORM
35
字号
# Gambas Form File 1.0{ FSave Form  Move(318,264,368,294)  Text = ("Save modified files")  Icon = Picture["img/16/quit.png"]  Border = Window.Fixed  { lstFile ListBox    Move(8,56,232,232)    Mode = ListBox.Multi  }  { btnSave Button    Move(256,56,104,24)    Text = ("Save")    Default = True  }  { btnQuit Button    Move(256,88,104,24)    Text = ("Continue")  }  { btnCancel Button    Move(256,120,104,24)    Text = ("Cancel")    Cancel = True  }  { Image1 PictureBox    Move(8,8,32,32)    Picture = Picture["img/question.png"]  }  { TextLabel1 TextLabel    Move(48,8,312,40)    Text = ("Some files have been modified. Do you want to save them ?")  }}

⌨️ 快捷键说明

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