1、GridControl與微軟自帶控件textBox(或者dev的TextEdit)同步顯示
第一步: //獲取當前行號 public DataRow CurrentRow { get { return this.gridView1.GetDataRow(gridView1.FocusedRowHandle); } } 第二步: textBox_bh.Text = CurrentRow["數據庫中對應的列名"].ToString(); textBox_mc.Text = CurrentRow["數據庫中對應的列名"].ToString(); 完成任務 2、GridControl與DevExpress控件CheckEdit同步 第一步: if (CurrentRow["CheckEdit控件對應於數據庫中的列名"].ToString() == "1") { // CheckEdit_a是控件的name CheckEdit_a .Checked = true; } else { CheckEdit_a.Checked = false; } 小注:0與1分別代表選擇與未選 第二步:將0與1保存到數據庫中 完成任務