12 lines
411 B
C#
12 lines
411 B
C#
namespace TsSFCDeivceClient.BaseControlEx
|
|
{
|
|
public static class GridControlExtend
|
|
{
|
|
public static void CustomDrawColumnHeader(this DevExpress.XtraGrid.Views.Grid.ColumnHeaderCustomDrawEventArgs e)
|
|
{
|
|
if (e.Column != null && (e.Column.Caption == "Selection" || e.Column.FieldName == "DX$CheckboxSelectorColumn"))
|
|
e.Info.Caption = "选择";
|
|
}
|
|
}
|
|
}
|