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

📄 dataset1.designer.cs

📁 简单的图书管理系统1、系统功能的基本要求: (1)图书信息的输入
💻 CS
📖 第 1 页 / 共 5 页
字号:
            }
            
            [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 类型, short 图书册书, short 期刊册书, int 续借次数, bool 限制图书, bool 限制期刊) {
                读者类型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["类型"];
                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(short), null, System.Data.MappingType.Element);
                base.Columns.Add(this.column图书册书);
                this.column期刊册书 = new System.Data.DataColumn("期刊册书", typeof(short), 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(bool), null, System.Data.MappingType.Element);
                base.Columns.Add(this.column限制图书);
                this.column限制期刊 = new System.Data.DataColumn("限制期刊", typeof(bool), 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;
                this.column限制图书.DefaultValue = ((bool)(false));
                this.column限制期刊.DefaultValue = ((bool)(false));
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public 读者类型Row New读者类型Row() {
                return ((读者类型Row)(this.NewRow()));
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override System.Data.DataRow NewRowFromBuilder(System.Data.DataRowBuilder builder) {
                return new 读者类型Row(builder);
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override System.Type GetRowType() {
                return typeof(读者类型Row);
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override void OnRowChanged(System.Data.DataRowChangeEventArgs e) {
                base.OnRowChanged(e);
                if ((this.读者类型RowChanged != null)) {
                    this.读者类型RowChanged(this, new 读者类型RowChangeEvent(((读者类型Row)(e.Row)), e.Action));
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override void OnRowChanging(System.Data.DataRowChangeEventArgs e) {
                base.OnRowChanging(e);
                if ((this.读者类型RowChanging != null)) {
                    this.读者类型RowChanging(this, new 读者类型RowChangeEvent(((读者类型Row)(e.Row)), e.Action));
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override void OnRowDeleted(System.Data.DataRowChangeEventArgs e) {
                base.OnRowDeleted(e);
                if ((this.读者类型RowDeleted != null)) {
                    this.读者类型RowDeleted(this, new 读者类型RowChangeEvent(((读者类型Row)(e.Row)), e.Action));
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override void OnRowDeleting(System.Data.DataRowChangeEventArgs e) {
                base.OnRowDeleting(e);
                if ((this.读者类型RowDeleting != null)) {
                    this.读者类型RowDeleting(this, new 读者类型RowChangeEvent(((读者类型Row)(e.Row)), e.Action));
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public void Remove读者类型Row(读者类型Row 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();
                DataSet1 ds = new DataSet1();
                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 = "读者类型DataTable";
                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 图书信息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 columnISBN;
            
            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借出次数;
            
            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.Case

⌨️ 快捷键说明

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