private void AsuMotionSetStopType(object sender, EventArgs e) { double tolerance = 1.6; int ret = AsuInvoke.Asu_MotionSetStopType(handle, AsuMotionStopType.AsuMotion_Stop_Type_Exact, tolerance); switch (ret) { case 0: Print("设置停止类型 成功"); break; case 1: Print("设置停止类型 失败,设备句柄为空指针,一般因为没有打开设备导致"); break; default: Print("设置停止类型 失败"); break; } }