labelinfo.cs
来自「动易SiteFactory™ 网上商店系统1.0源代码」· CS 代码 · 共 165 行
CS
165 行
namespace PowerEasy.Model.TemplateProc
{
using PowerEasy.Model;
using System;
using System.Collections.Specialized;
using System.Text;
public class LabelInfo : PowerEasy.Model.Nullable
{
private NameValueCollection m_AttributesData;
private int m_Error;
private StringBuilder m_LabelContent;
private NameValueCollection m_LabelDefineData;
private NameValueCollection m_OriginalData;
private int m_Page;
private string m_PageName;
private int m_PageSize;
private string m_RootPath;
private int m_TotalPub;
public LabelInfo()
{
this.m_Page = 1;
this.m_OriginalData = new NameValueCollection();
this.m_LabelDefineData = new NameValueCollection();
this.m_AttributesData = new NameValueCollection();
this.m_LabelContent = new StringBuilder();
}
public LabelInfo(bool value)
{
this.m_Page = 1;
this.m_OriginalData = new NameValueCollection();
this.m_LabelDefineData = new NameValueCollection();
this.m_AttributesData = new NameValueCollection();
this.m_LabelContent = new StringBuilder();
base.IsNull = value;
}
public LabelInfo(int page, string rootpath, string pagename, StringBuilder labelcontent, int totalpub, int pagesize)
{
this.m_Page = 1;
this.m_OriginalData = new NameValueCollection();
this.m_LabelDefineData = new NameValueCollection();
this.m_AttributesData = new NameValueCollection();
this.m_LabelContent = new StringBuilder();
this.m_Page = page;
this.m_RootPath = rootpath;
this.m_PageName = pagename;
this.m_LabelContent = labelcontent;
this.m_TotalPub = totalpub;
this.m_PageSize = pagesize;
}
public NameValueCollection AttributesData
{
get
{
return this.m_AttributesData;
}
}
public int Error
{
get
{
return this.m_Error;
}
set
{
this.m_Error = value;
}
}
public StringBuilder LabelContent
{
get
{
return this.m_LabelContent;
}
set
{
this.m_LabelContent = value;
}
}
public NameValueCollection LabelDefineData
{
get
{
return this.m_LabelDefineData;
}
}
public NameValueCollection OriginalData
{
get
{
return this.m_OriginalData;
}
}
public int Page
{
get
{
return this.m_Page;
}
set
{
this.m_Page = value;
}
}
public string PageName
{
get
{
return this.m_PageName;
}
set
{
this.m_PageName = value;
}
}
public int PageSize
{
get
{
return this.m_PageSize;
}
set
{
this.m_PageSize = value;
}
}
public string RootPath
{
get
{
return this.m_RootPath;
}
set
{
this.m_RootPath = value;
}
}
public int TotalPub
{
get
{
return this.m_TotalPub;
}
set
{
this.m_TotalPub = value;
}
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?