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.

 

 

 

 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值