frmmain.form

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

FORM
63
字号
# Gambas Form File 1.0{ FrmMain Form  Move(289,225,417,387)  Text = ("Server Socket Example")  Border = Window.Fixed  { Button1 Button    Move(256,16,152,24)    Text = ("Listen")  }  { TextBox1 TextBox    Move(144,48,104,24)    Text = ("32340")  }  { TextArea1 TextArea    Move(8,192,392,184)    Text = ("")  }  { Button2 Button    Move(256,48,152,24)    Text = ("Close")  }  { TextLabel1 TextLabel    Move(16,48,120,24)    Text = ("Port :")  }  { CmdWait Button    Move(16,160,128,24)    Text = ("Wait")  }  { Label1 Label    Move(8,120,200,24)    Text = ("Maximum number of clients:")  }  { ComboBox1 ComboBox    Move(248,120,152,24)    Text = (" ")    List = ("(no Limit)\n1\n2\n3\n4\n5\n6\n7\n8\n9\n10")  }  { TextLabel2 TextLabel    Move(16,16,120,24)    Text = ("Type :")  }  { ComboBox2 ComboBox    Move(144,16,104,16)    Text = (" ")    ReadOnly = True    List = ("TCP\nUNIX")  }  { TextLabel3 TextLabel    Move(16,80,120,24)    Text = ("Path :")  }  { TxtPath TextBox    Move(144,80,256,24)    Text = ("")  }  { Server #ServerSocket    #X = 312    #Y = 152  }}

⌨️ 快捷键说明

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