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