public void OTCAMove(int step) { if (isPowerOn && otcBtn.ARelBtn) { if (step >= 0) { for (int i = 0; i < step; i++) { otcxyz.AStepUp(); } } else { for (int i = 0; i < -step; i++) { otcxyz.AStepDown(); } } } }
private void button9_Click(object sender, EventArgs e) { otcxyz.AStepUp(); RefreshData(); }