示例#1
0
 private void buttonSend1_Click(object sender, EventArgs e)
 {
     EchoClient.SendData(1);
 }
示例#2
0
 private void buttonSendCount_Click(object sender, EventArgs e)
 {
     EchoClient.SendData(Convert.ToInt32(textBoxSendCount.Text));
 }
示例#3
0
 private void timerSendData_Tick(object sender, EventArgs e)
 {
     EchoClient.SendData(Convert.ToInt32(textBoxSendCount.Text));
 }