// 启动线程 启动监听按钮 private void button1_Click(object sender, EventArgs e) { Thread th = new Thread(new ThreadStart(handleSc)); th.IsBackground = true; th.Start(); } private void handleSc() { int port = 8080; port = System...