fexplorer.form
来自「Gambas is a graphical development enviro」· FORM 代码 · 共 65 行
FORM
65 行
# Gambas Form File 1.0{ FExplorer Form Move(256,100,797,597) Text = ("Help browser") Icon = Picture["img/16/explorer.png"] Persistent = True Arrangement = Arrange.Vertical { panExplorer Panel Move(0,0,160,24) { btnRefresh ToolButton Move(0,0,24,24) ToolTip = ("Refresh") Text = ("") Picture = Picture["img/16/refresh.png"] } { btnBack ToolButton Move(24,0,24,24) ToolTip = ("Previous") Text = ("") Picture = Picture["img/16/left.png"] } { btnForward ToolButton Move(48,0,24,24) ToolTip = ("Next") Text = ("") Picture = Picture["img/16/right.png"] } { btnHome ToolButton Move(72,0,24,24) ToolTip = ("Index") Text = ("") Picture = Picture["img/16/home.png"] } } { splExplorer HSplit Move(8,40,504,384) Expand = True { tabExplorer TabStrip Move(40,48,208,280) Count = 2 Index = 0 Text = ("Explore") { trvExplorer TreeView Move(8,8,152,176) } Index = 1 Text = ("Search") { txtSearch TextBox Move(0,0,200,24) Text = ("") } { lstSearch ListView Move(8,32,192,208) Sorted = True } Index = 0 } { txvExplorer TextView Move(304,72,168,240) Text = ("") } }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?