全部博文(1293)
发布时间:2016-06-15 16:39:45
ListView没有Item的双击事件,只能通过变通的方法得到,以下是我的变通方法 private void listView右侧_MouseDoubleClick( object sender , MouseEventArgs e ) { ListViewHitTestInfo info = listView右侧.HitTest (.........【阅读全文】
发布时间:2016-06-13 18:57:47
如已绑定过数据源:DataTable dt = (dataGridView1.DataSource as DataTable)如未绑定过数据源:public DataTable GetDgvToTable(DataGridView dgv) { DataTable dt = new DataTable();&n.........【阅读全文】
发布时间:2016-05-31 16:21:44
在VS2008/VS2010中编写?如下代码:PrintDialog printDialog = new PrintDialog();printDialog.ShowDialog();在??XP环境下,它可以正常显示出打印对话框。但在Windows 7 64位环境下,什么也显示不出来,也没有异常抛出。将PrintDialog.?UseEXDialog属性设置为True,可显示出打印对话框。代码如下:PrintDialo.........【阅读全文】
发布时间:2016-05-30 16:27:41
C#禁用numericUpDown控件鼠标中键滚轮消息响应numericUpDown_roadgain.MouseWheel += new MouseEventHandler(Num_DiscountAmount_MouseWheel);private void Num_DiscountAmount_MouseWheel(object sender, MouseEventArgs e){ HandledMouseEventArgs h = e as HandledMouseEventArgs; if .........【阅读全文】