2013年7月11日

DEV GridControl 导出到Excel

摘要: SaveFileDialog saveFileDialog = new SaveFileDialog(); saveFileDialog.Title = "导出Excel"; saveFileDialog.Filter = "Excel文件(*.Xls)|*.Xls"; DialogResult dialogResult = saveFileDialog.ShowDialog(this); if (dialogResult == DialogResult.OK) ... 阅读全文

posted @ 2013-07-11 11:02 冬夜冷雨 阅读(573) 评论(0) 推荐(0) 编辑

DEV GridControl 获取选中行的数据

摘要: private void gridView1_FocusedRowChanged(object sender, DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventArgs e) { _dept = (Department)gridView1.GetFocusedRow(); textEdit1.Text = _dept.Name; } 这个要用到gridView1 的FocusedRowChanged 事件 获取这一行的数据。 阅读全文

posted @ 2013-07-11 10:54 冬夜冷雨 阅读(5390) 评论(0) 推荐(0) 编辑

DEV GridControl 鼠标单击事件

摘要: private void gridView1_RowClick(object sender, DevExpress.XtraGrid.Views.Grid.RowClickEventArgs e) { //双击就执行 if (e.Clicks != 2) return; //获取选中行的数据 _dept = (Department)gridView1.GetFocusedRow(); this.DialogResult = System.W... 阅读全文

posted @ 2013-07-11 10:46 冬夜冷雨 阅读(1482) 评论(0) 推荐(0) 编辑

导航