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

📄 银行储蓄系统dataset3.designer.cs

📁 这是一个银行储蓄系统的源代码及数据库文件
💻 CS
📖 第 1 页 / 共 5 页
字号:
            System.Xml.Schema.XmlSchemaComplexType type = new System.Xml.Schema.XmlSchemaComplexType();
            System.Xml.Schema.XmlSchemaSequence sequence = new System.Xml.Schema.XmlSchemaSequence();
            xs.Add(ds.GetSchemaSerializable());
            System.Xml.Schema.XmlSchemaAny any = new System.Xml.Schema.XmlSchemaAny();
            any.Namespace = ds.Namespace;
            sequence.Items.Add(any);
            type.Particle = sequence;
            return type;
        }
        
        public delegate void 储户信息RowChangeEventHandler(object sender, 储户信息RowChangeEvent e);
        
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
        [System.Serializable()]
        [System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
        public partial class 储户信息DataTable : System.Data.DataTable, System.Collections.IEnumerable {
            
            private System.Data.DataColumn column储户编号;
            
            private System.Data.DataColumn column身份证号;
            
            private System.Data.DataColumn column储户姓名;
            
            private System.Data.DataColumn column联系电话;
            
            private System.Data.DataColumn column备注;
            
            private System.Data.DataColumn column卡号;
            
            private System.Data.DataColumn column密码;
            
            private System.Data.DataColumn column地址;
            
            private System.Data.DataColumn column业务员编号;
            
            private System.Data.DataColumn column开户日期;
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public 储户信息DataTable() {
                this.TableName = "储户信息";
                this.BeginInit();
                this.InitClass();
                this.EndInit();
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            internal 储户信息DataTable(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 储户信息DataTable(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()]
            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 储户信息Row this[int index] {
                get {
                    return ((储户信息Row)(this.Rows[index]));
                }
            }
            
            public event 储户信息RowChangeEventHandler 储户信息RowChanging;
            
            public event 储户信息RowChangeEventHandler 储户信息RowChanged;
            
            public event 储户信息RowChangeEventHandler 储户信息RowDeleting;
            
            public event 储户信息RowChangeEventHandler 储户信息RowDeleted;
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public void Add储户信息Row(储户信息Row row) {
                this.Rows.Add(row);
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public 储户信息Row Add储户信息Row(string 储户编号, string 身份证号, string 储户姓名, string 联系电话, string 备注, string 卡号, string 密码, string 地址, int 业务员编号, System.DateTime 开户日期) {
                储户信息Row row储户信息Row = ((储户信息Row)(this.NewRow()));
                row储户信息Row.ItemArray = new object[] {
                        储户编号,
                        身份证号,
                        储户姓名,
                        联系电话,
                        备注,
                        卡号,
                        密码,
                        地址,
                        业务员编号,
                        开户日期};
                this.Rows.Add(row储户信息Row);
                return row储户信息Row;
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public 储户信息Row FindBy储户编号(string 储户编号) {
                return ((储户信息Row)(this.Rows.Find(new object[] {
                            储户编号})));
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public virtual System.Collections.IEnumerator GetEnumerator() {
                return this.Rows.GetEnumerator();
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public override System.Data.DataTable Clone() {
                储户信息DataTable cln = ((储户信息DataTable)(base.Clone()));
                cln.InitVars();
                return cln;
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override System.Data.DataTable CreateInstance() {
                return new 储户信息DataTable();
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            internal void InitVars() {
                this.column储户编号 = base.Columns["储户编号"];

⌨️ 快捷键说明

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