摘要: 今天看到坛友在尝试这个问题,并且也找到了答案,在这里记录以下,给用得到的同学参考以下: ICogRecord record = Station[1].CreateLastRunRecord().SubRecords[1]; ICogRecord record1 = Station[2].Create 阅读全文
posted @ 2021-03-11 15:37 passtime 阅读(1677) 评论(1) 推荐(1) 编辑
摘要: C#禁用numericUpDown控件鼠标中键滚轮消息响应 numericUpDown_roadgain.MouseWheel += new MouseEventHandler(Num_DiscountAmount_MouseWheel); private void Num_DiscountAmou 阅读全文
posted @ 2021-03-11 11:20 passtime 阅读(542) 评论(0) 推荐(0) 编辑
摘要: private void NumericUpDown1_MouseWheel(object sender, MouseEventArgs e) { HandledMouseEventArgs hme = e as HandledMouseEventArgs; if (hme != null) { h 阅读全文
posted @ 2021-03-11 11:17 passtime 阅读(719) 评论(0) 推荐(0) 编辑