You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
866 B
C#
37 lines
866 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.ComponentModel;
|
|
|
|
namespace Mesnac.Controls.Base
|
|
{
|
|
[Serializable]
|
|
public class DataGridViewColumns
|
|
{
|
|
private string _filedData;
|
|
[Description("绑定字段")]
|
|
public string FiledData
|
|
{
|
|
get { return _filedData; }
|
|
set { _filedData = value; }
|
|
}
|
|
|
|
private string _displayName;
|
|
[Description("显示名称")]
|
|
public string DisplayName
|
|
{
|
|
get { return _displayName; }
|
|
set { _displayName = value; }
|
|
}
|
|
|
|
//private int _dgvcolumnWidth;
|
|
//[Description("列宽")]
|
|
//public int DgvColumnWidth
|
|
//{
|
|
// get { return _dgvcolumnWidth; }
|
|
// set { _dgvcolumnWidth = value; }
|
|
//}
|
|
}
|
|
}
|