ftips.form

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

FORM
40
字号
# Gambas Form File 1.0{ FTips Form  Move(227,138,628,443)  Text = ("Tips of the day")  Icon = Picture["img/16/about.png"]  { lblTitle Label    Move(0,8,432,40)    Font = Font["20,Bold"]    Background = &H88D5FF&    Foreground = &HFFFFFF&    Text = ("  Tips of the day")  }  { panBottom Panel    Move(8,328,552,32)    { chkShowTip CheckBox      Move(0,8,232,24)      Text = ("Show tips on startup")    }    { btnPrev Button      Move(216,8,104,24)      Text = ("<< &Previous")    }    { btnNext Button      Move(328,8,104,24)      Text = ("&Next >>")    }    { btnClose Button      Move(440,8,104,24)      Text = ("Close")      Default = True    }  }  { txtTip TextView    Move(8,56,200,120)    Text = ("")    Border = False  }}

⌨️ 快捷键说明

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