How to select the full row in DataGrid

How to select the full row in DataGrid?

 

As a multifunctional data display control, DataGrid is used frequently in practice. Sometimes, you want to select full row in datagrid which seems as follows:

 

 

 

Follow me, I will tell you how to present it step by step.

First, you need to specify the Data Source of the DataGrid control. then, execute a method Modify().

System.Data.DataTable dt = Oracle.GetDataTable( sql );

dataGrid1.DataSource = dt;

Modify( this.dataGrid1 ); // Note: if the datasource is null this method will throw a exception.

 

the code of Modify as follows:

/// <summary>

/// 移除網格列中的TextBox

/// </summary>

/// <param name="dg">數據網格控件</param>

internal void Modify( DataGrid dg )

{

         DataGridTextBoxColumn x = null;

         for( int i = 0; i < dg.TableStyles[ 0 ].GridColumnStyles.Count; i ++ )

         {

                   x = dg.TableStyles[ 0 ].GridColumnStyles[ i ] as DataGridTextBoxColumn;

                   x.TextBox.Parent.Controls.Remove( x.TextBox );

         }

}

 

well, you can assign the process code of CurrentCellChanged event of DataGrid now. it’s very simple.

 

this.dataGrid1.Select( this.dataGrid1.CurrentRowIndex );

 

Btw. i like Ding.

 

 

 

 
發佈了97 篇原創文章 · 獲贊 6 · 訪問量 14萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章