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

📄 dataset2.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()]
            [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 姓名, System.DateTime 罚款日期, decimal 应罚金额, decimal 实收金额, bool 是否交款, string 备注) {
                图书罚款Row row图书罚款Row = ((图书罚款Row)(this.NewRow()));
                row图书罚款Row.ItemArray = new object[] {
                        null,
                        图书编号,
                        书名,
                        读者编号,
                        姓名,
                        罚款日期,
                        应罚金额,
                        实收金额,
                        是否交款,
                        备注};
                this.Rows.Add(row图书罚款Row);
                return row图书罚款Row;
            }
            
            [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["罚款日期"];
                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(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(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(System.DateTime), 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(decimal), 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(string), null, System.Data.MappingType.Element);
                base.Columns.Add(this.column备注);
                this.column罚款编号.AutoIncrement = true;
                this.column罚款编号.AllowDBNull = false;
                this.column罚款编号.ReadOnly = true;
            }
            
            [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")]
        public partial class 图书信息Row : System.Data.DataRow {
            
            private 图书信息DataTable table图书信息;
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            internal 图书信息Row(System.Data.DataRowBuilder rb) : 
                    base(rb) {
                this.table图书信息 = ((图书信息DataTable)(this.Table));
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public string 编号 {
                get {
                    return ((string)(this[this.table图书信息.编号Column]));
                }
                set {
                    this[this.table图书信息.编号Column] = value;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public string 书名 {
                get {
                    try {
                        return ((string)(this[this.table图书信息.书名Column]));
                    }
                    catch (System.InvalidCastException e) {
                        throw new System.Data.StrongTypingException("表“图书信息”中列“书名”的值为 DBNull。", e);
                    }
                }
                set {
                    this[this.table图书信息.书名Column] = value;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public string 条形码 {
                get {
                    try {
                        return ((string)(this[this.table图书信息.条形码Column]));
                    }
                    catch (System.InvalidCastException e) {
                        throw new System.Data.StrongTypingException("表“图书信息”中列“条形码”的值为 DBNull。", e);
                    }
                }
                set {
                    this[this.table图书信息.条形码Column] = value;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public string 类型 

⌨️ 快捷键说明

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