📄 tablestruct.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
namespace MVC.Common
{
struct TableStruct
{
private int m_Index;
private string m_HeaderText;
private string m_DataPropertyName;
private int m_Width;
/// <summary>
/// 索引
/// </summary>
public int Index
{
set { m_Index = value; }
get { return m_Index; }
}
/// <summary>
/// 绑定列名
/// </summary>
public string DataPropertyName
{
set { m_DataPropertyName = value; }
get { return m_DataPropertyName; }
}
/// <summary>
/// 显示名称
/// </summary>
public string HeaderText
{
set { m_HeaderText = value; }
get { return m_HeaderText; }
}
/// <summary>
/// 宽度
/// </summary>
public int Width
{
set { m_Width = value; }
get { return m_Width; }
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -