⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dataset_stores.designer.cs

📁 以前为一家4S店开发的维修管理及客户管理的软件,C#开发!
💻 CS
📖 第 1 页 / 共 5 页
字号:
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public gp_getoldinstockdealDataTable() {
                this.TableName = "gp_getoldinstockdeal";
                this.BeginInit();
                this.InitClass();
                this.EndInit();
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            internal gp_getoldinstockdealDataTable(System.Data.DataTable table) {
                this.TableName = table.TableName;
                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 gp_getoldinstockdealDataTable(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : 
                    base(info, context) {
                this.InitVars();
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public System.Data.DataColumn qtyColumn {
                get {
                    return this.columnqty;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public System.Data.DataColumn billnumberidColumn {
                get {
                    return this.columnbillnumberid;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public System.Data.DataColumn ptypeidColumn {
                get {
                    return this.columnptypeid;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public System.Data.DataColumn priceColumn {
                get {
                    return this.columnprice;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public System.Data.DataColumn totalColumn {
                get {
                    return this.columntotal;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public System.Data.DataColumn pnameColumn {
                get {
                    return this.columnpname;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public System.Data.DataColumn usercodeColumn {
                get {
                    return this.columnusercode;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            [System.ComponentModel.Browsable(false)]
            public int Count {
                get {
                    return this.Rows.Count;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public gp_getoldinstockdealRow this[int index] {
                get {
                    return ((gp_getoldinstockdealRow)(this.Rows[index]));
                }
            }
            
            public event gp_getoldinstockdealRowChangeEventHandler gp_getoldinstockdealRowChanging;
            
            public event gp_getoldinstockdealRowChangeEventHandler gp_getoldinstockdealRowChanged;
            
            public event gp_getoldinstockdealRowChangeEventHandler gp_getoldinstockdealRowDeleting;
            
            public event gp_getoldinstockdealRowChangeEventHandler gp_getoldinstockdealRowDeleted;
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public void Addgp_getoldinstockdealRow(gp_getoldinstockdealRow row) {
                this.Rows.Add(row);
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public gp_getoldinstockdealRow Addgp_getoldinstockdealRow(decimal qty, long billnumberid, string ptypeid, decimal price, decimal total, string pname, string usercode) {
                gp_getoldinstockdealRow rowgp_getoldinstockdealRow = ((gp_getoldinstockdealRow)(this.NewRow()));
                rowgp_getoldinstockdealRow.ItemArray = new object[] {
                        qty,
                        billnumberid,
                        ptypeid,
                        price,
                        total,
                        pname,
                        usercode};
                this.Rows.Add(rowgp_getoldinstockdealRow);
                return rowgp_getoldinstockdealRow;
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public virtual System.Collections.IEnumerator GetEnumerator() {
                return this.Rows.GetEnumerator();
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public override System.Data.DataTable Clone() {
                gp_getoldinstockdealDataTable cln = ((gp_getoldinstockdealDataTable)(base.Clone()));
                cln.InitVars();
                return cln;
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override System.Data.DataTable CreateInstance() {
                return new gp_getoldinstockdealDataTable();
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            internal void InitVars() {
                this.columnqty = base.Columns["qty"];
                this.columnbillnumberid = base.Columns["billnumberid"];
                this.columnptypeid = base.Columns["ptypeid"];
                this.columnprice = base.Columns["price"];
                this.columntotal = base.Columns["total"];
                this.columnpname = base.Columns["pname"];
                this.columnusercode = base.Columns["usercode"];
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            private void InitClass() {
                this.columnqty = new System.Data.DataColumn("qty", typeof(decimal), null, System.Data.MappingType.Element);
                base.Columns.Add(this.columnqty);
                this.columnbillnumberid = new System.Data.DataColumn("billnumberid", typeof(long), null, System.Data.MappingType.Element);
                base.Columns.Add(this.columnbillnumberid);
                this.columnptypeid = new System.Data.DataColumn("ptypeid", typeof(string), null, System.Data.MappingType.Element);
                base.Columns.Add(this.columnptypeid);
                this.columnprice = new System.Data.DataColumn("price", typeof(decimal), null, System.Data.MappingType.Element);
                base.Columns.Add(this.columnprice);
                this.columntotal = new System.Data.DataColumn("total", typeof(decimal), null, System.Data.MappingType.Element);
                base.Columns.Add(this.columntotal);
                this.columnpname = new System.Data.DataColumn("pname", typeof(string), null, System.Data.MappingType.Element);
                base.Columns.Add(this.columnpname);
                this.columnusercode = new System.Data.DataColumn("usercode", typeof(string), null, System.Data.MappingType.Element);
                base.Columns.Add(this.columnusercode);
                this.columnptypeid.MaxLength = 25;
                this.columnpname.MaxLength = 255;
                this.columnusercode.MaxLength = 255;
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public gp_getoldinstockdealRow Newgp_getoldinstockdealRow() {
                return ((gp_getoldinstockdealRow)(this.NewRow()));
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override System.Data.DataRow NewRowFromBuilder(System.Data.DataRowBuilder builder) {
                return new gp_getoldinstockdealRow(builder);
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override System.Type GetRowType() {
                return typeof(gp_getoldinstockdealRow);
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override void OnRowChanged(System.Data.DataRowChangeEventArgs e) {
                base.OnRowChanged(e);
                if ((this.gp_getoldinstockdealRowChanged != null)) {
                    this.gp_getoldinstockdealRowChanged(this, new gp_getoldinstockdealRowChangeEvent(((gp_getoldinstockdealRow)(e.Row)), e.Action));
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override void OnRowChanging(System.Data.DataRowChangeEventArgs e) {
                base.OnRowChanging(e);
                if ((this.gp_getoldinstockdealRowChanging != null)) {
                    this.gp_getoldinstockdealRowChanging(this, new gp_getoldinstockdealRowChangeEvent(((gp_getoldinstockdealRow)(e.Row)), e.Action));
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override void OnRowDeleted(System.Data.DataRowChangeEventArgs e) {
                base.OnRowDeleted(e);
                if ((this.gp_getoldinstockdealRowDeleted != null)) {
                    this.gp_getoldinstockdealRowDeleted(this, new gp_getoldinstockdealRowChangeEvent(((gp_getoldinstockdealRow)(e.Row)), e.Action));
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override void OnRowDeleting(System.Data.DataRowChangeEventArgs e) {
                base.OnRowDeleting(e);
                if ((this.gp_getoldinstockdealRowDeleting != null)) {
                    this.gp_getoldinstockdealRowDeleting(this, new gp_getoldinstockdealRowChangeEvent(((gp_getoldinstockdealRow)(e.Row)), e.Action));
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public void Removegp_getoldinstockdealRow(gp_getoldinstockdealRow 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();
                DataSet_Stores ds = new DataSet_Stores();
                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 = "gp_getoldinstockdealDataTable";
                type.Attributes.Add(attribute2);
                type.Particle = sequence;
                return type;
            }
        }
        
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
        [System.Serializable()]
        [System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
        public partial class gp_getoldinstockmainDataTable : System.Data.DataTable, System.Collections.IEnumerable {
            
            private System.Data.DataColumn columnBillNumberID;
            
            private System.Data.DataColumn columnBillDate;
            
            private System.Data.DataColumn columnBillCode;
            
            private System.Data.DataColumn columnifcheck;
            
            private System.Data.DataColumn columnComment;
            
            private System.Data.DataColumn columnbname;
            
            private System.Data.DataColumn columnstockname;
            

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -