📄 datagridsortcommandeventargs.cs
字号:
using System;
namespace System.Web.UI.WebControls
{
/// <summary>
/// Summary description for DataGridSortCommandEventArgs.
/// </summary>
public class DataGridSortCommandEventArgs
{
private object commandSource;
private string sortExpression;
public DataGridSortCommandEventArgs(object commandSource, DataGridCommandEventArgs dce) : base()
{
this.commandSource = commandSource;
this.sortExpression = (String) dce.CommandArgument;
}
public object CommandSource
{
get
{
return this.commandSource;
}
}
public string SortExpression
{
get
{
return this.sortExpression;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -