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

📄 ckdataset.designer.cs

📁 将数据库中的一列汉字批量转换为拼音第一个字母并存到另一列
💻 CS
📖 第 1 页 / 共 5 页
字号:
        public delegate void kcRowChangeEventHandler(object sender, kcRowChangeEvent e);
        
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
        [System.Serializable()]
        [System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
        public partial class kcDataTable : System.Data.DataTable, System.Collections.IEnumerable {
            
            private System.Data.DataColumn columnspid;
            
            private System.Data.DataColumn columnspbh;
            
            private System.Data.DataColumn columnspmc;
            
            private System.Data.DataColumn columnspgg;
            
            private System.Data.DataColumn columnspdw;
            
            private System.Data.DataColumn columnchckbh;
            
            private System.Data.DataColumn columncptype;
            
            private System.Data.DataColumn columnchck;
            
            private System.Data.DataColumn columnspsl;
            
            private System.Data.DataColumn columnspdj;
            
            private System.Data.DataColumn columnspje;
            
            private System.Data.DataColumn columngys;
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public kcDataTable() {
                this.TableName = "kc";
                this.BeginInit();
                this.InitClass();
                this.EndInit();
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            internal kcDataTable(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 kcDataTable(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : 
                    base(info, context) {
                this.InitVars();
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public System.Data.DataColumn spidColumn {
                get {
                    return this.columnspid;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public System.Data.DataColumn spbhColumn {
                get {
                    return this.columnspbh;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public System.Data.DataColumn spmcColumn {
                get {
                    return this.columnspmc;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public System.Data.DataColumn spggColumn {
                get {
                    return this.columnspgg;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public System.Data.DataColumn spdwColumn {
                get {
                    return this.columnspdw;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public System.Data.DataColumn chckbhColumn {
                get {
                    return this.columnchckbh;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public System.Data.DataColumn cptypeColumn {
                get {
                    return this.columncptype;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public System.Data.DataColumn chckColumn {
                get {
                    return this.columnchck;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public System.Data.DataColumn spslColumn {
                get {
                    return this.columnspsl;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public System.Data.DataColumn spdjColumn {
                get {
                    return this.columnspdj;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public System.Data.DataColumn spjeColumn {
                get {
                    return this.columnspje;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public System.Data.DataColumn gysColumn {
                get {
                    return this.columngys;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            [System.ComponentModel.Browsable(false)]
            public int Count {
                get {
                    return this.Rows.Count;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public kcRow this[int index] {
                get {
                    return ((kcRow)(this.Rows[index]));
                }
            }
            
            public event kcRowChangeEventHandler kcRowChanging;
            
            public event kcRowChangeEventHandler kcRowChanged;
            
            public event kcRowChangeEventHandler kcRowDeleting;
            
            public event kcRowChangeEventHandler kcRowDeleted;
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public void AddkcRow(kcRow row) {
                this.Rows.Add(row);
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public kcRow AddkcRow(string spbh, string spmc, string spgg, string spdw, string chckbh, string cptype, string chck, int spsl, double spdj, double spje, string gys) {
                kcRow rowkcRow = ((kcRow)(this.NewRow()));
                rowkcRow.ItemArray = new object[] {
                        null,
                        spbh,
                        spmc,
                        spgg,
                        spdw,
                        chckbh,
                        cptype,
                        chck,
                        spsl,
                        spdj,
                        spje,
                        gys};
                this.Rows.Add(rowkcRow);
                return rowkcRow;
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public kcRow FindByspid(int spid) {
                return ((kcRow)(this.Rows.Find(new object[] {
                            spid})));
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public virtual System.Collections.IEnumerator GetEnumerator() {
                return this.Rows.GetEnumerator();
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public override System.Data.DataTable Clone() {
                kcDataTable cln = ((kcDataTable)(base.Clone()));
                cln.InitVars();
                return cln;
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override System.Data.DataTable CreateInstance() {
                return new kcDataTable();
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            internal void InitVars() {
                this.columnspid = base.Columns["spid"];

⌨️ 快捷键说明

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