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

📄 dataset2.designer.cs

📁 简单的图书管理系统1、系统功能的基本要求: (1)图书信息的输入
💻 CS
📖 第 1 页 / 共 5 页
字号:
                this.columnISBN = base.Columns["ISBN"];
                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.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.columnISBN = new System.Data.DataColumn("ISBN", typeof(string), null, System.Data.MappingType.Element);
                base.Columns.Add(this.columnISBN);
                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(decimal), 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(string), 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(int), 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(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是否注销.AllowDBNull = 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();
                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 = "图书信息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 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]));

⌨️ 快捷键说明

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