示例#1
0
 private void Down_Click(object sender, EventArgs e)
 {
     this.direction = buttonDir.South;
     this.jogEvent.Set();
 }
示例#2
0
 private void CCW_Click(object sender, EventArgs e)
 {
     this.direction = buttonDir.West;
     this.jogEvent.Set();
 }
示例#3
0
 private void Up_Click(object sender, EventArgs e)
 {
     this.direction = buttonDir.North;
     this.jogEvent.Set();
 }