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

📄 dataset1.designer.cs

📁 简单的学生成绩管理系统。实现学生成绩学号管理
💻 CS
📖 第 1 页 / 共 5 页
字号:
            }
            
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
            internal 课程信息DataTable(global::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;
            }
            
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected 课程信息DataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : 
                    base(info, context) {
                this.InitVars();
            }
            
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public global::System.Data.DataColumn 课程编号Column {
                get {
                    return this.column课程编号;
                }
            }
            
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public global::System.Data.DataColumn 课程名称Column {
                get {
                    return this.column课程名称;
                }
            }
            
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public global::System.Data.DataColumn 课程简称Column {
                get {
                    return this.column课程简称;
                }
            }
            
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public global::System.Data.DataColumn 拼音码Column {
                get {
                    return this.column拼音码;
                }
            }
            
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public global::System.Data.DataColumn 本学期课程Column {
                get {
                    return this.column本学期课程;
                }
            }
            
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public global::System.Data.DataColumn 教师Column {
                get {
                    return this.column教师;
                }
            }
            
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public global::System.Data.DataColumn 开课系别Column {
                get {
                    return this.column开课系别;
                }
            }
            
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public global::System.Data.DataColumn 学分Column {
                get {
                    return this.column学分;
                }
            }
            
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
            [global::System.ComponentModel.Browsable(false)]
            public int Count {
                get {
                    return this.Rows.Count;
                }
            }
            
            [global::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;
            
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public void Add课程信息Row(课程信息Row row) {
                this.Rows.Add(row);
            }
            
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public 课程信息Row Add课程信息Row(int 课程编号, string 课程名称, string 课程简称, string 拼音码, string 本学期课程, string 教师, string 开课系别, int 学分) {
                课程信息Row row课程信息Row = ((课程信息Row)(this.NewRow()));
                object[] columnValuesArray = new object[] {
                        课程编号,
                        课程名称,
                        课程简称,
                        拼音码,
                        本学期课程,
                        教师,
                        开课系别,
                        学分};
                row课程信息Row.ItemArray = columnValuesArray;
                this.Rows.Add(row课程信息Row);
                return row课程信息Row;
            }
            
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public 课程信息Row FindBy课程编号(int 课程编号) {
                return ((课程信息Row)(this.Rows.Find(new object[] {
                            课程编号})));
            }
            
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public virtual global::System.Collections.IEnumerator GetEnumerator() {
                return this.Rows.GetEnumerator();
            }
            
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public override global::System.Data.DataTable Clone() {
                课程信息DataTable cln = ((课程信息DataTable)(base.Clone()));
                cln.InitVars();
                return cln;
            }
            
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override global::System.Data.DataTable CreateInstance() {
                return new 课程信息DataTable();
            }
            
            [global::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["学分"];
            }
            
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
            private void InitClass() {
                this.column课程编号 = new global::System.Data.DataColumn("课程编号", typeof(int), null, global::System.Data.MappingType.Element);
                base.Columns.Add(this.column课程编号);
                this.column课程名称 = new global::System.Data.DataColumn("课程名称", typeof(string), null, global::System.Data.MappingType.Element);
                base.Columns.Add(this.column课程名称);
                this.column课程简称 = new global::System.Data.DataColumn("课程简称", typeof(string), null, global::System.Data.MappingType.Element);
                base.Columns.Add(this.column课程简称);
                this.column拼音码 = new global::System.Data.DataColumn("拼音码", typeof(string), null, global::System.Data.MappingType.Element);
                base.Columns.Add(this.column拼音码);
                this.column本学期课程 = new global::System.Data.DataColumn("本学期课程", typeof(string), null, global::System.Data.MappingType.Element);
                base.Columns.Add(this.column本学期课程);
                this.column教师 = new global::System.Data.DataColumn("教师", typeof(string), null, global::System.Data.MappingType.Element);
                base.Columns.Add(this.column教师);
                this.column开课系别 = new global::System.Data.DataColumn("开课系别", typeof(string), null, global::System.Data.MappingType.Element);
                base.Columns.Add(this.column开课系别);
                this.column学分 = new global::System.Data.DataColumn("学分", typeof(int), null, global::System.Data.MappingType.Element);
                base.Columns.Add(this.column学分);
                this.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] {
                                this.column课程编号}, true));
                this.column课程编号.AllowDBNull = false;
                this.column课程编号.Unique = true;
                this.column课程名称.AllowDBNull = false;
                this.column课程简称.AllowDBNull = false;
                this.column本学期课程.AllowDBNull = false;
            }
            
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public 课程信息Row New课程信息Row() {
                return ((课程信息Row)(this.NewRow()));
            }
            
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
                return new 课程信息Row(builder);
            }
            
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override global::System.Type GetRowType() {
                return typeof(课程信息Row);
            }
            
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
                base.OnRowChanged(e);
                if ((this.课程信息RowChanged != null)) {
                    this.课程信息RowChanged(this, new 课程信息RowChangeEvent(((课程信息Row)(e.Row)), e.Action));
                }
            }
            
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
                base.OnRowChanging(e);
                if ((this.课程信息RowChanging != null)) {
                    this.课程信息RowChanging(this, new 课程信息RowChangeEvent(((课程信息Row)(e.Row)), e.Action));
                }
            }
            
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
                base.OnRowDeleted(e);
                if ((this.课程信息RowDeleted != null)) {
                    this.课程信息RowDeleted(this, new 课程信息RowChangeEvent(((课程信息Row)(e.Row)), e.Action));
                }
            }
            
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
                base.OnRowDeleting(e);
                if ((this.课程信息RowDeleting != null)) {
                    this.课程信息RowDeleting(this, new 课程信息RowChangeEvent(((课程信息Row)(e.Row)), e.Action));
                }
            }
            
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public void Remove课程信息Row(课程信息Row row) {
                this.Rows.Remove(row);
            }
            
            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
                global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
                global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
                DataSet1 ds = new DataSet1();
                global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
                any1.Namespace = "http://www.w3.org/2001/XMLSchema";
                any1.MinOccurs = new decimal(0);
                any1.MaxOccurs = decimal.MaxValue;
                any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
                sequence.Items.Add(any1);
                global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
                any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
                any2.MinOccurs = new decimal(1);

⌨️ 快捷键说明

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