📄 chkdataset.designer.cs
字号:
if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
this.CaseSensitive = table.CaseSensitive;
}
if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
this.Locale = table.Locale;
}
if ((table.Namespace != table.DataSet.Namespace)) {
this.Namespace = table.Namespace;
}
this.Prefix = table.Prefix;
this.MinimumCapacity = table.MinimumCapacity;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected V_CheckDataTable(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) :
base(info, context) {
this.InitVars();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn 产品编号Column {
get {
return this.column产品编号;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn 产品名称Column {
get {
return this.column产品名称;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn 库存数量Column {
get {
return this.column库存数量;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn 盘点实数Column {
get {
return this.column盘点实数;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn 盘点日期Column {
get {
return this.column盘点日期;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.ComponentModel.Browsable(false)]
public int Count {
get {
return this.Rows.Count;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public V_CheckRow this[int index] {
get {
return ((V_CheckRow)(this.Rows[index]));
}
}
public event V_CheckRowChangeEventHandler V_CheckRowChanging;
public event V_CheckRowChangeEventHandler V_CheckRowChanged;
public event V_CheckRowChangeEventHandler V_CheckRowDeleting;
public event V_CheckRowChangeEventHandler V_CheckRowDeleted;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void AddV_CheckRow(V_CheckRow row) {
this.Rows.Add(row);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public V_CheckRow AddV_CheckRow(string 产品编号, string 产品名称, int 库存数量, int 盘点实数, System.DateTime 盘点日期) {
V_CheckRow rowV_CheckRow = ((V_CheckRow)(this.NewRow()));
rowV_CheckRow.ItemArray = new object[] {
产品编号,
产品名称,
库存数量,
盘点实数,
盘点日期};
this.Rows.Add(rowV_CheckRow);
return rowV_CheckRow;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public virtual System.Collections.IEnumerator GetEnumerator() {
return this.Rows.GetEnumerator();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public override System.Data.DataTable Clone() {
V_CheckDataTable cln = ((V_CheckDataTable)(base.Clone()));
cln.InitVars();
return cln;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Data.DataTable CreateInstance() {
return new V_CheckDataTable();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal void InitVars() {
this.column产品编号 = base.Columns["产品编号"];
this.column产品名称 = base.Columns["产品名称"];
this.column库存数量 = base.Columns["库存数量"];
this.column盘点实数 = base.Columns["盘点实数"];
this.column盘点日期 = base.Columns["盘点日期"];
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
private void InitClass() {
this.column产品编号 = new System.Data.DataColumn("产品编号", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.column产品编号);
this.column产品名称 = new System.Data.DataColumn("产品名称", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.column产品名称);
this.column库存数量 = new System.Data.DataColumn("库存数量", typeof(int), null, System.Data.MappingType.Element);
base.Columns.Add(this.column库存数量);
this.column盘点实数 = new System.Data.DataColumn("盘点实数", typeof(int), null, System.Data.MappingType.Element);
base.Columns.Add(this.column盘点实数);
this.column盘点日期 = new System.Data.DataColumn("盘点日期", typeof(System.DateTime), null, System.Data.MappingType.Element);
base.Columns.Add(this.column盘点日期);
this.column产品编号.AllowDBNull = false;
this.column产品编号.MaxLength = 20;
this.column产品名称.AllowDBNull = false;
this.column产品名称.MaxLength = 50;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public V_CheckRow NewV_CheckRow() {
return ((V_CheckRow)(this.NewRow()));
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Data.DataRow NewRowFromBuilder(System.Data.DataRowBuilder builder) {
return new V_CheckRow(builder);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Type GetRowType() {
return typeof(V_CheckRow);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowChanged(System.Data.DataRowChangeEventArgs e) {
base.OnRowChanged(e);
if ((this.V_CheckRowChanged != null)) {
this.V_CheckRowChanged(this, new V_CheckRowChangeEvent(((V_CheckRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowChanging(System.Data.DataRowChangeEventArgs e) {
base.OnRowChanging(e);
if ((this.V_CheckRowChanging != null)) {
this.V_CheckRowChanging(this, new V_CheckRowChangeEvent(((V_CheckRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowDeleted(System.Data.DataRowChangeEventArgs e) {
base.OnRowDeleted(e);
if ((this.V_CheckRowDeleted != null)) {
this.V_CheckRowDeleted(this, new V_CheckRowChangeEvent(((V_CheckRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowDeleting(System.Data.DataRowChangeEventArgs e) {
base.OnRowDeleting(e);
if ((this.V_CheckRowDeleting != null)) {
this.V_CheckRowDeleting(this, new V_CheckRowChangeEvent(((V_CheckRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void RemoveV_CheckRow(V_CheckRow row) {
this.Rows.Remove(row);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public static System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(System.Xml.Schema.XmlSchemaSet xs) {
System.Xml.Schema.XmlSchemaComplexType type = new System.Xml.Schema.XmlSchemaComplexType();
System.Xml.Schema.XmlSchemaSequence sequence = new System.Xml.Schema.XmlSchemaSequence();
ChkDataSet ds = new ChkDataSet();
xs.Add(ds.GetSchemaSerializable());
System.Xml.Schema.XmlSchemaAny any1 = new System.Xml.Schema.XmlSchemaAny();
any1.Namespace = "http://www.w3.org/2001/XMLSchema";
any1.MinOccurs = new decimal(0);
any1.MaxOccurs = decimal.MaxValue;
any1.ProcessContents = System.Xml.Schema.XmlSchemaContentProcessing.Lax;
sequence.Items.Add(any1);
System.Xml.Schema.XmlSchemaAny any2 = new System.Xml.Schema.XmlSchemaAny();
any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
any2.MinOccurs = new decimal(1);
any2.ProcessContents = System.Xml.Schema.XmlSchemaContentProcessing.Lax;
sequence.Items.Add(any2);
System.Xml.Schema.XmlSchemaAttribute attribute1 = new System.Xml.Schema.XmlSchemaAttribute();
attribute1.Name = "namespace";
attribute1.FixedValue = ds.Namespace;
type.Attributes.Add(attribute1);
System.Xml.Schema.XmlSchemaAttribute attribute2 = new System.Xml.Schema.XmlSchemaAttribute();
attribute2.Name = "tableTypeName";
attribute2.FixedValue = "V_CheckDataTable";
type.Attributes.Add(attribute2);
type.Particle = sequence;
return type;
}
}
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
public partial class V_CheckRow : System.Data.DataRow {
private V_CheckDataTable tableV_Check;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal V_CheckRow(System.Data.DataRowBuilder rb) :
base(rb) {
this.tableV_Check = ((V_CheckDataTable)(this.Table));
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string 产品编号 {
get {
return ((string)(this[this.tableV_Check.产品编号Column]));
}
set {
this[this.tableV_Check.产品编号Column] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string 产品名称 {
get {
return ((string)(this[this.tableV_Check.产品名称Column]));
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -