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