摘要:
C# DataGridView控件 动态添加新行DataGridView控件在实际应用中非常实用,特别需要表格显示数据时。可以静态绑定数据源,这样就自动为DataGridView控件添加相应的行。假如需要动态为DataGridView控件添加新行,方法有很多种,下面简单介绍如何为DataGridView控件动态添加新行的两种方法:方法一:int index=this.dataGridView1.Rows.Add();this.dataGridView1.Rows[index].Cells[0].Value = "1"; this.dataGridView1.Rows[ind 阅读全文
摘要:
判断dataset为空以及dataset中是否有表以及表中是否有数据一般都知道使用dataset时先判断它是否为空,但我开始对ds为空的概念有点模糊,在网上查了下,结果如下:DataSet为空和DataSet中没有表是两回事。 DataSet为空,或者说DataSet类型的引用为空是指这个引用型变量未指向任何new出来的内存块。 ds:DataSetif(ds == null) //ds为空if(ds.Tables.Count == 0) //ds中没有表if(ds.Tables.Count == 1 && ds.Tables[0].Rows.Count == 0) //ds中 阅读全文