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

📄 tdsflight.designer.cs

📁 航空公司用的简单管理系统
💻 CS
📖 第 1 页 / 共 3 页
字号:
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override void OnRowDeleted(System.Data.DataRowChangeEventArgs e) {
                base.OnRowDeleted(e);
                if ((this.BSAFlightRowDeleted != null)) {
                    this.BSAFlightRowDeleted(this, new BSAFlightRowChangeEvent(((BSAFlightRow)(e.Row)), e.Action));
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override void OnRowDeleting(System.Data.DataRowChangeEventArgs e) {
                base.OnRowDeleting(e);
                if ((this.BSAFlightRowDeleting != null)) {
                    this.BSAFlightRowDeleting(this, new BSAFlightRowChangeEvent(((BSAFlightRow)(e.Row)), e.Action));
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public void RemoveBSAFlightRow(BSAFlightRow 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();
                tdsFlight ds = new tdsFlight();
                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 = "BSAFlightDataTable";
                type.Attributes.Add(attribute2);
                type.Particle = sequence;
                return type;
            }
        }
        
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
        public partial class BSAFlightRow : System.Data.DataRow {
            
            private BSAFlightDataTable tableBSAFlight;
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            internal BSAFlightRow(System.Data.DataRowBuilder rb) : 
                    base(rb) {
                this.tableBSAFlight = ((BSAFlightDataTable)(this.Table));
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public int FlightID {
                get {
                    return ((int)(this[this.tableBSAFlight.FlightIDColumn]));
                }
                set {
                    this[this.tableBSAFlight.FlightIDColumn] = value;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public string FlightNo {
                get {
                    return ((string)(this[this.tableBSAFlight.FlightNoColumn]));
                }
                set {
                    this[this.tableBSAFlight.FlightNoColumn] = value;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public string FlightDate {
                get {
                    return ((string)(this[this.tableBSAFlight.FlightDateColumn]));
                }
                set {
                    this[this.tableBSAFlight.FlightDateColumn] = value;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public string Week {
                get {
                    try {
                        return ((string)(this[this.tableBSAFlight.WeekColumn]));
                    }
                    catch (System.InvalidCastException e) {
                        throw new System.Data.StrongTypingException("表“BSAFlight”中列“Week”的值为 DBNull。", e);
                    }
                }
                set {
                    this[this.tableBSAFlight.WeekColumn] = value;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public string LeaveTime {
                get {
                    return ((string)(this[this.tableBSAFlight.LeaveTimeColumn]));
                }
                set {
                    this[this.tableBSAFlight.LeaveTimeColumn] = value;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public string ArriveTime {
                get {
                    return ((string)(this[this.tableBSAFlight.ArriveTimeColumn]));
                }
                set {
                    this[this.tableBSAFlight.ArriveTimeColumn] = value;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public string OriginalAddress {
                get {
                    return ((string)(this[this.tableBSAFlight.OriginalAddressColumn]));
                }
                set {
                    this[this.tableBSAFlight.OriginalAddressColumn] = value;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public string ObjectAddress {
                get {
                    return ((string)(this[this.tableBSAFlight.ObjectAddressColumn]));
                }
                set {
                    this[this.tableBSAFlight.ObjectAddressColumn] = value;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public string PlaneType {
                get {
                    return ((string)(this[this.tableBSAFlight.PlaneTypeColumn]));
                }
                set {
                    this[this.tableBSAFlight.PlaneTypeColumn] = value;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public decimal APrice {
                get {
                    return ((decimal)(this[this.tableBSAFlight.APriceColumn]));
                }
                set {
                    this[this.tableBSAFlight.APriceColumn] = value;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public decimal BPrice {
                get {
                    return ((decimal)(this[this.tableBSAFlight.BPriceColumn]));
                }
                set {
                    this[this.tableBSAFlight.BPriceColumn] = value;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public decimal CPrice {
                get {
                    return ((decimal)(this[this.tableBSAFlight.CPriceColumn]));
                }
                set {
                    this[this.tableBSAFlight.CPriceColumn] = value;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public decimal AgioRatio {
                get {
                    try {
                        return ((decimal)(this[this.tableBSAFlight.AgioRatioColumn]));
                    }
                    catch (System.InvalidCastException e) {
                        throw new System.Data.StrongTypingException("表“BSAFlight”中列“AgioRatio”的值为 DBNull。", e);
                    }
                }
                set {
                    this[this.tableBSAFlight.AgioRatioColumn] = value;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public string Comment {
                get {
                    try {
                        return ((string)(this[this.tableBSAFlight.CommentColumn]));
                    }
                    catch (System.InvalidCastException e) {
                        throw new System.Data.StrongTypingException("表“BSAFlight”中列“Comment”的值为 DBNull。", e);
                    }
                }
                set {
                    this[this.tableBSAFlight.CommentColumn] = value;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public bool IsWeekNull() {
                return this.IsNull(this.tableBSAFlight.WeekColumn);
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public void SetWeekNull() {
                this[this.tableBSAFlight.WeekColumn] = System.Convert.DBNull;
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public bool IsAgioRatioNull() {
                return this.IsNull(this.tableBSAFlight.AgioRatioColumn);
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public void SetAgioRatioNull() {
                this[this.tableBSAFlight.AgioRatioColumn] = System.Convert.DBNull;
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public bool IsCommentNull() {
                return this.IsNull(this.tableBSAFlight.CommentColumn);
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public void SetCommentNull() {
                this[this.tableBSAFlight.CommentColumn] = System.Convert.DBNull;
            }
        }
        
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
        public class BSAFlightRowChangeEvent : System.EventArgs {
            
            private BSAFlightRow eventRow;
            
            private System.Data.DataRowAction eventAction;
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public BSAFlightRowChangeEvent(BSAFlightRow row, System.Data.DataRowAction action) {
                this.eventRow = row;
                this.eventAction = action;
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public BSAFlightRow Row {
                get {
                    return this.eventRow;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public System.Data.DataRowAction Action {
                get {
                    return this.eventAction;
                }
            }
        }
    }
}

#pragma warning restore 1591

⌨️ 快捷键说明

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