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

📄 employeedataset.designer.cs

📁 Visual C#2005程序设计教程
💻 CS
📖 第 1 页 / 共 5 页
字号:
            
            private System.Data.DataColumn column扣税;
            
            private System.Data.DataColumn column应发工资;
            
            private System.Data.DataColumn column实发工资;
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public payDataTable() {
                this.TableName = "pay";
                this.BeginInit();
                this.InitClass();
                this.EndInit();
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            internal payDataTable(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 payDataTable(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()]
            [System.ComponentModel.Browsable(false)]
            public int Count {
                get {
                    return this.Rows.Count;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public payRow this[int index] {
                get {
                    return ((payRow)(this.Rows[index]));
                }
            }
            
            public event payRowChangeEventHandler payRowChanging;
            
            public event payRowChangeEventHandler payRowChanged;
            
            public event payRowChangeEventHandler payRowDeleting;
            
            public event payRowChangeEventHandler payRowDeleted;
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public void AddpayRow(payRow row) {
                this.Rows.Add(row);
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public payRow AddpayRow(string 编号, float 基本工资, float 职务工资, float 补贴, float 奖金, float 扣税, double 应发工资, double 实发工资) {
                payRow rowpayRow = ((payRow)(this.NewRow()));
                rowpayRow.ItemArray = new object[] {
                        编号,
                        基本工资,
                        职务工资,
                        补贴,
                        奖金,
                        扣税,
                        应发工资,
                        实发工资};
                this.Rows.Add(rowpayRow);
                return rowpayRow;
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public payRow FindBy编号(string 编号) {
                return ((payRow)(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() {
                payDataTable cln = ((payDataTable)(base.Clone()));
                cln.InitVars();
                return cln;
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override System.Data.DataTable CreateInstance() {
                return new payDataTable();
            }
            
            [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["实发工资"];
            }
            
            [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(float), null, System.Data.MappingType.Element);
                base.Columns.Add(this.column基本工资);
                this.column职务工资 = new System.Data.DataColumn("职务工资", typeof(float), null, System.Data.MappingType.Element);
                base.Columns.Add(this.column职务工资);
                this.column补贴 = new System.Data.DataColumn("补贴", typeof(float), null, System.Data.MappingType.Element);
                base.Columns.Add(this.column补贴);
                this.column奖金 = new System.Data.DataColumn("奖金", typeof(float), null, System.Data.MappingType.Element);
                base.Columns.Add(this.column奖金);
                this.column扣税 = new System.Data.DataColumn("扣税", typeof(float), null, System.Data.MappingType.Element);
                base.Columns.Add(this.column扣税);
                this.column应发工资 = new System.Data.DataColumn("应发工资", typeof(double), null, System.Data.MappingType.Element);
                base.Columns.Add(this.column应发工资);
                this.column实发工资 = new System.Data.DataColumn("实发工资", typeof(double), 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编号.MaxLength = 6;
                this.column应发工资.ReadOnly = true;
                this.column实发工资.ReadOnly = true;
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public payRow NewpayRow() {
                return ((payRow)(this.NewRow()));
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override System.Data.DataRow NewRowFromBuilder(System.Data.DataRowBuilder builder) {
                return new payRow(builder);
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override System.Type GetRowType() {
                return typeof(payRow);
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override void OnRowChanged(System.Data.DataRowChangeEventArgs e) {
                base.OnRowChanged(e);
                if ((this.payRowChanged != null)) {
                    this.payRowChanged(this, new payRowChangeEvent(((payRow)(e.Row)), e.Action));
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override void OnRowChanging(System.Data.DataRowChangeEventArgs e) {
                base.OnRowChanging(e);
                if ((this.payRowChanging != null)) {
                    this.payRowChanging(this, new payRowChangeEvent(((payRow)(e.Row)), e.Action));
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override void OnRowDeleted(System.Data.DataRowChangeEventArgs e) {
                base.OnRowDeleted(e);
                if ((this.payRowDeleted != null)) {
                    this.payRowDeleted(this, new payRowChangeEvent(((payRow)(e.Row)), e.Action));
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override void OnRowDeleting(System.Data.DataRowChangeEventArgs e) {
                base.OnRowDeleting(e);
                if ((this.payRowDeleting != null)) {
                    this.payRowDeleting(this, new payRowChangeEvent(((payRow)(e.Row)), e.Action));
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public void RemovepayRow(payRow 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();
                employeeDataSet ds = new employeeDataSet();
                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();

⌨️ 快捷键说明

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