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

📄 dataset2.designer.cs

📁 这是本人学习语言来第一次写的程序
💻 CS
📖 第 1 页 / 共 5 页
字号:
        
        public delegate void tsxxbRowChangeEventHandler(object sender, tsxxbRowChangeEvent e);
        
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
        [System.Serializable()]
        [System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
        public partial class ygxxbDataTable : System.Data.DataTable, System.Collections.IEnumerable {
            
            private System.Data.DataColumn columnICQ;
            
            private System.Data.DataColumn columnOICQ;
            
            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 ygxxbDataTable() {
                this.TableName = "ygxxb";
                this.BeginInit();
                this.InitClass();
                this.EndInit();
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            internal ygxxbDataTable(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 ygxxbDataTable(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : 
                    base(info, context) {
                this.InitVars();
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public System.Data.DataColumn ICQColumn {
                get {
                    return this.columnICQ;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public System.Data.DataColumn OICQColumn {
                get {
                    return this.columnOICQ;
                }
            }
            
            [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 ygxxbRow this[int index] {
                get {
                    return ((ygxxbRow)(this.Rows[index]));
                }
            }
            
            public event ygxxbRowChangeEventHandler ygxxbRowChanging;
            
            public event ygxxbRowChangeEventHandler ygxxbRowChanged;
            
            public event ygxxbRowChangeEventHandler ygxxbRowDeleting;
            
            public event ygxxbRowChangeEventHandler ygxxbRowDeleted;
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public void AddygxxbRow(ygxxbRow row) {
                this.Rows.Add(row);
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public ygxxbRow AddygxxbRow(string ICQ, string OICQ, string 办公地址, string 电子邮箱, string 密码, string 手机, string 系统管理员, string 姓名, string 性别, string 用户名) {
                ygxxbRow rowygxxbRow = ((ygxxbRow)(this.NewRow()));
                rowygxxbRow.ItemArray = new object[] {
                        ICQ,
                        OICQ,
                        办公地址,
                        电子邮箱,
                        密码,
                        手机,
                        系统管理员,
                        姓名,
                        性别,
                        用户名};
                this.Rows.Add(rowygxxbRow);
                return rowygxxbRow;
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public ygxxbRow FindBy用户名(string 用户名) {
                return ((ygxxbRow)(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() {
                ygxxbDataTable cln = ((ygxxbDataTable)(base.Clone()));
                cln.InitVars();
                return cln;
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override System.Data.DataTable CreateInstance() {
                return new ygxxbDataTable();
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            internal void InitVars() {
                this.columnICQ = base.Columns["ICQ"];
                this.columnOICQ = base.Columns["OICQ"];
                this.column办公地址 = base.Columns["办公地址"];
                this.column电子邮箱 = base.Columns["电子邮箱"];
                this.column密码 = base.Columns["密码"];
                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.columnICQ = new System.Data.DataColumn("ICQ", typeof(string), null, System.Data.MappingType.Element);
                base.Columns.Add(this.columnICQ);
                this.columnOICQ = new System.Data.DataColumn("OICQ", typeof(string), null, System.Data.MappingType.Element);
                base.Columns.Add(this.columnOICQ);
                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(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(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(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.Constraints.Add(new System.Data.UniqueConstraint("Constraint1", new System.Data.DataColumn[] {
                                this.column用户名}, true));
                this.column用户名.AllowDBNull = false;
                this.column用户名.Unique = true;
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public ygxxbRow NewygxxbRow() {
                return ((ygxxbRow)(this.NewRow()));
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override System.Data.DataRow NewRowFromBuilder(System.Data.DataRowBuilder builder) {
                return new ygxxbRow(builder);
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override System.Type GetRowType() {
                return typeof(ygxxbRow);
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override void OnRowChanged(System.Data.DataRowChangeEventArgs e) {
                base.OnRowChanged(e);
                if ((this.ygxxbRowChanged != null)) {
                    this.ygxxbRowChanged(this, new ygxxbRowChangeEvent(((ygxxbRow)(e.Row)), e.Action));
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override void OnRowChanging(System.Data.DataRowChangeEventArgs e) {
                base.OnRowChanging(e);
                if ((this.ygxxbRowChanging != null)) {
                    this.ygxxbRowChanging(this, new ygxxbRowChangeEvent(((ygxxbRow)(e.Row)), e.Action));
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override void OnRowDeleted(System.Data.DataRowChangeEventArgs e) {
                base.OnRowDeleted(e);
                if ((this.ygxxbRowDeleted != null)) {
                    this.ygxxbRowDeleted(this, new ygxxbRowChangeEvent(((ygxxbRow)(e.Row)), e.Action));
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override void OnRowDeleting(System.Data.DataRowChangeEventArgs e) {
                base.OnRowDeleting(e);
                if ((this.ygxxbRowDeleting != null)) {
                    this.ygxxbRowDeleting(this, new ygxxbRowChangeEvent(((ygxxbRow)(e.Row)), e.Action));

⌨️ 快捷键说明

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