摘要: 0、gridControl中获取数据源(XML): DataSet ds = new DataSet(); ds.ReadXml(System.AppDomain.CurrentDomain.BaseDirectory + @"\config\SimuColumn.xml"); this.gridControl1.ItemsSource = ds.Tables[0].DefaultView;1、获取gridControl的某一行中的某一单元格的值: DataRowView drv = (DataRowView)this.gridControl1.View.FocusedRo 阅读全文
posted @ 2013-03-29 10:01 邢立龙 阅读(356) 评论(1) 推荐(0) 编辑