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

📄 dataset2.designer.cs

📁 这是本人学习语言来第一次写的程序
💻 CS
📖 第 1 页 / 共 5 页
字号:
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public void RemoveygxxbRow(ygxxbRow 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();
                DataSet2 ds = new DataSet2();
                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 = "ygxxbDataTable";
                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 dzxxbDataTable : 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性别;
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public dzxxbDataTable() {
                this.TableName = "dzxxb";
                this.BeginInit();
                this.InitClass();
                this.EndInit();
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            internal dzxxbDataTable(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 dzxxbDataTable(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()]
            [System.ComponentModel.Browsable(false)]
            public int Count {
                get {
                    return this.Rows.Count;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public dzxxbRow this[int index] {
                get {
                    return ((dzxxbRow)(this.Rows[index]));
                }
            }
            
            public event dzxxbRowChangeEventHandler dzxxbRowChanging;
            
            public event dzxxbRowChangeEventHandler dzxxbRowChanged;
            
            public event dzxxbRowChangeEventHandler dzxxbRowDeleting;
            
            public event dzxxbRowChangeEventHandler dzxxbRowDeleted;
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public void AdddzxxbRow(dzxxbRow row) {
                this.Rows.Add(row);
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public dzxxbRow AdddzxxbRow(string ICQ, string OICQ, string 编号, string 单位, string 电子邮箱, string 手机, string 姓名, string 性别) {
                dzxxbRow rowdzxxbRow = ((dzxxbRow)(this.NewRow()));
                rowdzxxbRow.ItemArray = new object[] {
                        ICQ,
                        OICQ,
                        编号,
                        单位,
                        电子邮箱,
                        手机,
                        姓名,
                        性别};
                this.Rows.Add(rowdzxxbRow);
                return rowdzxxbRow;
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public dzxxbRow FindBy编号(string 编号) {
                return ((dzxxbRow)(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() {
                dzxxbDataTable cln = ((dzxxbDataTable)(base.Clone()));
                cln.InitVars();
                return cln;
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override System.Data.DataTable CreateInstance() {
                return new dzxxbDataTable();
            }
            
            [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["性别"];
            }
            
            [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.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 dzxxbRow NewdzxxbRow() {
                return ((dzxxbRow)(this.NewRow()));
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override System.Data.DataRow NewRowFromBuilder(System.Data.DataRowBuilder builder) {
                return new dzxxbRow(builder);
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override System.Type GetRowType() {
                return typeof(dzxxbRow);
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override void OnRowChanged(System.Data.DataRowChangeEventArgs e) {
                base.OnRowChanged(e);
                if ((this.dzxxbRowChanged != null)) {
                    this.dzxxbRowChanged(this, new dzxxbRowChangeEvent(((dzxxbRow)(e.Row)), e.Action));
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override void OnRowChanging(System.Data.DataRowChangeEventArgs e) {
                base.OnRowChanging(e);
                if ((this.dzxxbRowChanging != null)) {
                    this.dzxxbRowChanging(this, new dzxxbRowChangeEvent(((dzxxbRow)(e.Row)), e.Action));
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override void OnRowDeleted(System.Data.DataRowChangeEventArgs e) {
                base.OnRowDeleted(e);
                if ((this.dzxxbRowDeleted != null)) {

⌨️ 快捷键说明

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