public void OTCYMove(int step) { if (isPowerOn && (otcBtn.XYZRelBtn || otcBtn.YRelBtn)) { if (step >= 0) { for (int i = 0; i < step; i++) { otcxyz.YStepUp(); } } else { for (int i = 0; i < -step; i++) { otcxyz.YStepDown(); } } } }
private void button5_Click(object sender, EventArgs e) { otcxyz.YStepUp(); RefreshData(); }