📄 fboardselect.class
字号:
' Gambas class filePUBLIC SUB cmdCancel_Click() FBoardSelect.CloseENDPUBLIC SUB Form_Show() DIM i AS Byte ' Fill in the combo box text section cboLayout.Text = Global.boarddesign[Global.selectedlayout].Name ' Fill in the combo box dropdown section FOR i = 0 TO Global.boarddesign.Count - 1 cboLayout.Add(Global.boarddesign[i].Name) NEXTENDPUBLIC SUB cmdOK_Click() ' Set board layout index Global.selectedlayout = cboLayout.Index ' Reset board FGameArea.reset_board() ' Close this window FBoardSelect.CloseEND
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -