示例#1
0
 private void Stop_Click(object sender, EventArgs e)
 {
     if (thread.ThreadState == ThreadState.Running || thread != null)
     {
         server.StopServer();
         thread.Abort();
         thread = null;
     }
 }