438 lines
		
	
	
		
			20 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			438 lines
		
	
	
		
			20 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace DataDictionary.UI
 | |
| {
 | |
|     partial class frmEvents
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// Required designer variable.
 | |
|         /// </summary>
 | |
|         private System.ComponentModel.IContainer components = null;
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Clean up any resources being used.
 | |
|         /// </summary>
 | |
|         /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
 | |
|         protected override void Dispose(bool disposing)
 | |
|         {
 | |
|             if (disposing && (components != null))
 | |
|             {
 | |
|                 components.Dispose();
 | |
|             }
 | |
|             base.Dispose(disposing);
 | |
|         }
 | |
| 
 | |
|         #region Windows Form Designer generated code
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Required method for Designer support - do not modify
 | |
|         /// the contents of this method with the code editor.
 | |
|         /// </summary>
 | |
|         private void InitializeComponent()
 | |
|         {
 | |
|             this.toolStrip1 = new System.Windows.Forms.ToolStrip();
 | |
|             this.tsbAdd = new System.Windows.Forms.ToolStripButton();
 | |
|             this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
 | |
|             this.tsbModify = new System.Windows.Forms.ToolStripButton();
 | |
|             this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
 | |
|             this.tsbCancel = new System.Windows.Forms.ToolStripButton();
 | |
|             this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
 | |
|             this.tsbSava = new System.Windows.Forms.ToolStripButton();
 | |
|             this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
 | |
|             this.tsbExit = new System.Windows.Forms.ToolStripButton();
 | |
|             this.panel1 = new System.Windows.Forms.Panel();
 | |
|             this.cboEventKind = new System.Windows.Forms.ComboBox();
 | |
|             this.label17 = new System.Windows.Forms.Label();
 | |
|             this.label7 = new System.Windows.Forms.Label();
 | |
|             this.txtUseRate = new System.Windows.Forms.TextBox();
 | |
|             this.txtHelpCode = new System.Windows.Forms.TextBox();
 | |
|             this.label6 = new System.Windows.Forms.Label();
 | |
|             this.label3 = new System.Windows.Forms.Label();
 | |
|             this.label4 = new System.Windows.Forms.Label();
 | |
|             this.label5 = new System.Windows.Forms.Label();
 | |
|             this.label2 = new System.Windows.Forms.Label();
 | |
|             this.chkIsValid = new System.Windows.Forms.CheckBox();
 | |
|             this.txtRemark = new System.Windows.Forms.TextBox();
 | |
|             this.txtName = new System.Windows.Forms.TextBox();
 | |
|             this.label1 = new System.Windows.Forms.Label();
 | |
|             this.dgvEventsKind = new System.Windows.Forms.DataGridView();
 | |
|             this.Id = new System.Windows.Forms.DataGridViewTextBoxColumn();
 | |
|             this.EventKind = new System.Windows.Forms.DataGridViewTextBoxColumn();
 | |
|             this.NameColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
 | |
|             this.HelpCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
 | |
|             this.UseRate = new System.Windows.Forms.DataGridViewTextBoxColumn();
 | |
|             this.Remark = new System.Windows.Forms.DataGridViewTextBoxColumn();
 | |
|             this.IsValid = new System.Windows.Forms.DataGridViewTextBoxColumn();
 | |
|             this.toolStrip1.SuspendLayout();
 | |
|             this.panel1.SuspendLayout();
 | |
|             ((System.ComponentModel.ISupportInitialize)(this.dgvEventsKind)).BeginInit();
 | |
|             this.SuspendLayout();
 | |
|             // 
 | |
|             // toolStrip1
 | |
|             // 
 | |
|             this.toolStrip1.Font = new System.Drawing.Font("微软雅黑", 10.5F);
 | |
|             this.toolStrip1.ImageScalingSize = new System.Drawing.Size(25, 25);
 | |
|             this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
 | |
|             this.tsbAdd,
 | |
|             this.toolStripSeparator1,
 | |
|             this.tsbModify,
 | |
|             this.toolStripSeparator2,
 | |
|             this.tsbCancel,
 | |
|             this.toolStripSeparator3,
 | |
|             this.tsbSava,
 | |
|             this.toolStripSeparator4,
 | |
|             this.tsbExit});
 | |
|             this.toolStrip1.Location = new System.Drawing.Point(0, 0);
 | |
|             this.toolStrip1.Name = "toolStrip1";
 | |
|             this.toolStrip1.Size = new System.Drawing.Size(777, 49);
 | |
|             this.toolStrip1.TabIndex = 7;
 | |
|             this.toolStrip1.Text = "toolStrip1";
 | |
|             // 
 | |
|             // tsbAdd
 | |
|             // 
 | |
|             this.tsbAdd.Font = new System.Drawing.Font("微软雅黑", 9F);
 | |
|             this.tsbAdd.Image = global::AIMSControls.Properties.Resources.图标_新建;
 | |
|             this.tsbAdd.ImageTransparentColor = System.Drawing.Color.Transparent;
 | |
|             this.tsbAdd.Name = "tsbAdd";
 | |
|             this.tsbAdd.Size = new System.Drawing.Size(52, 46);
 | |
|             this.tsbAdd.Text = "  增加  ";
 | |
|             this.tsbAdd.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
 | |
|             this.tsbAdd.Click += new System.EventHandler(this.tsbAdd_Click);
 | |
|             // 
 | |
|             // toolStripSeparator1
 | |
|             // 
 | |
|             this.toolStripSeparator1.Name = "toolStripSeparator1";
 | |
|             this.toolStripSeparator1.Size = new System.Drawing.Size(6, 49);
 | |
|             // 
 | |
|             // tsbModify
 | |
|             // 
 | |
|             this.tsbModify.Font = new System.Drawing.Font("微软雅黑", 9F);
 | |
|             this.tsbModify.Image = global::AIMSControls.Properties.Resources.图标_编辑;
 | |
|             this.tsbModify.ImageTransparentColor = System.Drawing.Color.Transparent;
 | |
|             this.tsbModify.Name = "tsbModify";
 | |
|             this.tsbModify.Size = new System.Drawing.Size(52, 46);
 | |
|             this.tsbModify.Text = "  修改  ";
 | |
|             this.tsbModify.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
 | |
|             this.tsbModify.Click += new System.EventHandler(this.tsbModify_Click);
 | |
|             // 
 | |
|             // toolStripSeparator2
 | |
|             // 
 | |
|             this.toolStripSeparator2.Name = "toolStripSeparator2";
 | |
|             this.toolStripSeparator2.Size = new System.Drawing.Size(6, 49);
 | |
|             // 
 | |
|             // tsbCancel
 | |
|             // 
 | |
|             this.tsbCancel.Font = new System.Drawing.Font("微软雅黑", 9F);
 | |
|             this.tsbCancel.Image = global::AIMSControls.Properties.Resources.图标_取消;
 | |
|             this.tsbCancel.ImageTransparentColor = System.Drawing.Color.Transparent;
 | |
|             this.tsbCancel.Name = "tsbCancel";
 | |
|             this.tsbCancel.Size = new System.Drawing.Size(52, 46);
 | |
|             this.tsbCancel.Text = "  取消  ";
 | |
|             this.tsbCancel.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
 | |
|             this.tsbCancel.Click += new System.EventHandler(this.tsbCancel_Click);
 | |
|             // 
 | |
|             // toolStripSeparator3
 | |
|             // 
 | |
|             this.toolStripSeparator3.Name = "toolStripSeparator3";
 | |
|             this.toolStripSeparator3.Size = new System.Drawing.Size(6, 49);
 | |
|             // 
 | |
|             // tsbSava
 | |
|             // 
 | |
|             this.tsbSava.Font = new System.Drawing.Font("微软雅黑", 9F);
 | |
|             this.tsbSava.Image = global::AIMSControls.Properties.Resources.图标_保存;
 | |
|             this.tsbSava.ImageTransparentColor = System.Drawing.Color.Transparent;
 | |
|             this.tsbSava.Name = "tsbSava";
 | |
|             this.tsbSava.Size = new System.Drawing.Size(52, 46);
 | |
|             this.tsbSava.Text = "  保存  ";
 | |
|             this.tsbSava.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
 | |
|             this.tsbSava.Click += new System.EventHandler(this.tsbSava_Click);
 | |
|             // 
 | |
|             // toolStripSeparator4
 | |
|             // 
 | |
|             this.toolStripSeparator4.Name = "toolStripSeparator4";
 | |
|             this.toolStripSeparator4.Size = new System.Drawing.Size(6, 49);
 | |
|             // 
 | |
|             // tsbExit
 | |
|             // 
 | |
|             this.tsbExit.Font = new System.Drawing.Font("微软雅黑", 9F);
 | |
|             this.tsbExit.Image = global::AIMSControls.Properties.Resources.图标_关闭窗口;
 | |
|             this.tsbExit.ImageTransparentColor = System.Drawing.Color.Transparent;
 | |
|             this.tsbExit.Name = "tsbExit";
 | |
|             this.tsbExit.Size = new System.Drawing.Size(52, 46);
 | |
|             this.tsbExit.Text = "  关闭  ";
 | |
|             this.tsbExit.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
 | |
|             this.tsbExit.Click += new System.EventHandler(this.tsbExit_Click);
 | |
|             // 
 | |
|             // panel1
 | |
|             // 
 | |
|             this.panel1.Controls.Add(this.cboEventKind);
 | |
|             this.panel1.Controls.Add(this.txtRemark);
 | |
|             this.panel1.Controls.Add(this.label17);
 | |
|             this.panel1.Controls.Add(this.label7);
 | |
|             this.panel1.Controls.Add(this.txtUseRate);
 | |
|             this.panel1.Controls.Add(this.txtHelpCode);
 | |
|             this.panel1.Controls.Add(this.label6);
 | |
|             this.panel1.Controls.Add(this.label3);
 | |
|             this.panel1.Controls.Add(this.label4);
 | |
|             this.panel1.Controls.Add(this.label5);
 | |
|             this.panel1.Controls.Add(this.label2);
 | |
|             this.panel1.Controls.Add(this.chkIsValid);
 | |
|             this.panel1.Controls.Add(this.txtName);
 | |
|             this.panel1.Controls.Add(this.label1);
 | |
|             this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
 | |
|             this.panel1.Font = new System.Drawing.Font("宋体", 10.5F);
 | |
|             this.panel1.Location = new System.Drawing.Point(0, 49);
 | |
|             this.panel1.Name = "panel1";
 | |
|             this.panel1.Size = new System.Drawing.Size(777, 69);
 | |
|             this.panel1.TabIndex = 8;
 | |
|             // 
 | |
|             // cboEventKind
 | |
|             // 
 | |
|             this.cboEventKind.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
 | |
|             this.cboEventKind.FormattingEnabled = true;
 | |
|             this.cboEventKind.Items.AddRange(new object[] {
 | |
|             "普通事件",
 | |
|             "特殊事件"});
 | |
|             this.cboEventKind.Location = new System.Drawing.Point(56, 11);
 | |
|             this.cboEventKind.Name = "cboEventKind";
 | |
|             this.cboEventKind.Size = new System.Drawing.Size(152, 22);
 | |
|             this.cboEventKind.TabIndex = 556;
 | |
|             // 
 | |
|             // label17
 | |
|             // 
 | |
|             this.label17.AutoSize = true;
 | |
|             this.label17.Location = new System.Drawing.Point(673, 44);
 | |
|             this.label17.Name = "label17";
 | |
|             this.label17.Size = new System.Drawing.Size(98, 14);
 | |
|             this.label17.TabIndex = 561;
 | |
|             this.label17.Text = "(\'|\'分割说明)";
 | |
|             // 
 | |
|             // label7
 | |
|             // 
 | |
|             this.label7.AutoSize = true;
 | |
|             this.label7.Location = new System.Drawing.Point(12, 45);
 | |
|             this.label7.Name = "label7";
 | |
|             this.label7.Size = new System.Drawing.Size(49, 14);
 | |
|             this.label7.TabIndex = 559;
 | |
|             this.label7.Text = "备注:";
 | |
|             // 
 | |
|             // txtUseRate
 | |
|             // 
 | |
|             this.txtUseRate.Location = new System.Drawing.Point(639, 11);
 | |
|             this.txtUseRate.Name = "txtUseRate";
 | |
|             this.txtUseRate.Size = new System.Drawing.Size(45, 23);
 | |
|             this.txtUseRate.TabIndex = 558;
 | |
|             // 
 | |
|             // txtHelpCode
 | |
|             // 
 | |
|             this.txtHelpCode.Location = new System.Drawing.Point(497, 11);
 | |
|             this.txtHelpCode.Name = "txtHelpCode";
 | |
|             this.txtHelpCode.Size = new System.Drawing.Size(78, 23);
 | |
|             this.txtHelpCode.TabIndex = 558;
 | |
|             // 
 | |
|             // label6
 | |
|             // 
 | |
|             this.label6.AutoSize = true;
 | |
|             this.label6.Location = new System.Drawing.Point(590, 15);
 | |
|             this.label6.Name = "label6";
 | |
|             this.label6.Size = new System.Drawing.Size(49, 14);
 | |
|             this.label6.TabIndex = 557;
 | |
|             this.label6.Text = "频次:";
 | |
|             // 
 | |
|             // label3
 | |
|             // 
 | |
|             this.label3.AutoSize = true;
 | |
|             this.label3.Location = new System.Drawing.Point(434, 15);
 | |
|             this.label3.Name = "label3";
 | |
|             this.label3.Size = new System.Drawing.Size(63, 14);
 | |
|             this.label3.TabIndex = 557;
 | |
|             this.label3.Text = "助记码:";
 | |
|             // 
 | |
|             // label4
 | |
|             // 
 | |
|             this.label4.AutoSize = true;
 | |
|             this.label4.Location = new System.Drawing.Point(644, 16);
 | |
|             this.label4.Name = "label4";
 | |
|             this.label4.Size = new System.Drawing.Size(0, 14);
 | |
|             this.label4.TabIndex = 14;
 | |
|             // 
 | |
|             // label5
 | |
|             // 
 | |
|             this.label5.AutoSize = true;
 | |
|             this.label5.Location = new System.Drawing.Point(12, 15);
 | |
|             this.label5.Name = "label5";
 | |
|             this.label5.Size = new System.Drawing.Size(49, 14);
 | |
|             this.label5.TabIndex = 555;
 | |
|             this.label5.Text = "事件:";
 | |
|             // 
 | |
|             // label2
 | |
|             // 
 | |
|             this.label2.AutoSize = true;
 | |
|             this.label2.Location = new System.Drawing.Point(502, 22);
 | |
|             this.label2.Name = "label2";
 | |
|             this.label2.Size = new System.Drawing.Size(0, 14);
 | |
|             this.label2.TabIndex = 14;
 | |
|             // 
 | |
|             // chkIsValid
 | |
|             // 
 | |
|             this.chkIsValid.AutoSize = true;
 | |
|             this.chkIsValid.Location = new System.Drawing.Point(699, 15);
 | |
|             this.chkIsValid.Name = "chkIsValid";
 | |
|             this.chkIsValid.Size = new System.Drawing.Size(68, 18);
 | |
|             this.chkIsValid.TabIndex = 13;
 | |
|             this.chkIsValid.Text = "有效性";
 | |
|             this.chkIsValid.UseVisualStyleBackColor = true;
 | |
|             // 
 | |
|             // txtRemark
 | |
|             // 
 | |
|             this.txtRemark.Location = new System.Drawing.Point(56, 39);
 | |
|             this.txtRemark.Name = "txtRemark";
 | |
|             this.txtRemark.Size = new System.Drawing.Size(611, 23);
 | |
|             this.txtRemark.TabIndex = 12;
 | |
|             this.txtRemark.TextChanged += new System.EventHandler(this.txtName_TextChanged);
 | |
|             // 
 | |
|             // txtName
 | |
|             // 
 | |
|             this.txtName.Location = new System.Drawing.Point(267, 11);
 | |
|             this.txtName.Name = "txtName";
 | |
|             this.txtName.Size = new System.Drawing.Size(152, 23);
 | |
|             this.txtName.TabIndex = 12;
 | |
|             this.txtName.TextChanged += new System.EventHandler(this.txtName_TextChanged);
 | |
|             // 
 | |
|             // label1
 | |
|             // 
 | |
|             this.label1.AutoSize = true;
 | |
|             this.label1.Location = new System.Drawing.Point(223, 15);
 | |
|             this.label1.Name = "label1";
 | |
|             this.label1.Size = new System.Drawing.Size(49, 14);
 | |
|             this.label1.TabIndex = 11;
 | |
|             this.label1.Text = "名称:";
 | |
|             // 
 | |
|             // dgvEventsKind
 | |
|             // 
 | |
|             this.dgvEventsKind.AllowUserToAddRows = false;
 | |
|             this.dgvEventsKind.BackgroundColor = System.Drawing.Color.White;
 | |
|             this.dgvEventsKind.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
 | |
|             this.dgvEventsKind.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
 | |
|             this.Id,
 | |
|             this.EventKind,
 | |
|             this.NameColumn,
 | |
|             this.HelpCode,
 | |
|             this.UseRate,
 | |
|             this.Remark,
 | |
|             this.IsValid});
 | |
|             this.dgvEventsKind.Dock = System.Windows.Forms.DockStyle.Fill;
 | |
|             this.dgvEventsKind.Location = new System.Drawing.Point(0, 118);
 | |
|             this.dgvEventsKind.Name = "dgvEventsKind";
 | |
|             this.dgvEventsKind.RowHeadersVisible = false;
 | |
|             this.dgvEventsKind.RowTemplate.Height = 23;
 | |
|             this.dgvEventsKind.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
 | |
|             this.dgvEventsKind.Size = new System.Drawing.Size(777, 317);
 | |
|             this.dgvEventsKind.TabIndex = 9;
 | |
|             // 
 | |
|             // Id
 | |
|             // 
 | |
|             this.Id.DataPropertyName = "Id";
 | |
|             this.Id.Frozen = true;
 | |
|             this.Id.HeaderText = "编号";
 | |
|             this.Id.Name = "Id";
 | |
|             this.Id.ReadOnly = true;
 | |
|             this.Id.Width = 60;
 | |
|             // 
 | |
|             // EventKind
 | |
|             // 
 | |
|             this.EventKind.DataPropertyName = "EventKind";
 | |
|             this.EventKind.HeaderText = "事件";
 | |
|             this.EventKind.Name = "EventKind";
 | |
|             this.EventKind.ReadOnly = true;
 | |
|             // 
 | |
|             // NameColumn
 | |
|             // 
 | |
|             this.NameColumn.DataPropertyName = "Name";
 | |
|             this.NameColumn.HeaderText = "名称";
 | |
|             this.NameColumn.Name = "NameColumn";
 | |
|             this.NameColumn.ReadOnly = true;
 | |
|             this.NameColumn.Width = 150;
 | |
|             // 
 | |
|             // HelpCode
 | |
|             // 
 | |
|             this.HelpCode.DataPropertyName = "HelpCode";
 | |
|             this.HelpCode.HeaderText = "帮助码";
 | |
|             this.HelpCode.Name = "HelpCode";
 | |
|             this.HelpCode.ReadOnly = true;
 | |
|             // 
 | |
|             // UseRate
 | |
|             // 
 | |
|             this.UseRate.DataPropertyName = "UseRate";
 | |
|             this.UseRate.HeaderText = "频次";
 | |
|             this.UseRate.Name = "UseRate";
 | |
|             // 
 | |
|             // Remark
 | |
|             // 
 | |
|             this.Remark.DataPropertyName = "Remark";
 | |
|             this.Remark.HeaderText = "备注";
 | |
|             this.Remark.Name = "Remark";
 | |
|             // 
 | |
|             // IsValid
 | |
|             // 
 | |
|             this.IsValid.DataPropertyName = "IsValid";
 | |
|             this.IsValid.HeaderText = "有效性";
 | |
|             this.IsValid.Name = "IsValid";
 | |
|             // 
 | |
|             // frmEvents
 | |
|             // 
 | |
|             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
 | |
|             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
 | |
|             this.ClientSize = new System.Drawing.Size(777, 435);
 | |
|             this.ControlBox = false;
 | |
|             this.Controls.Add(this.dgvEventsKind);
 | |
|             this.Controls.Add(this.panel1);
 | |
|             this.Controls.Add(this.toolStrip1);
 | |
|             this.Name = "frmEvents";
 | |
|             this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
 | |
|             this.Load += new System.EventHandler(this.frmEvents_Load);
 | |
|             this.toolStrip1.ResumeLayout(false);
 | |
|             this.toolStrip1.PerformLayout();
 | |
|             this.panel1.ResumeLayout(false);
 | |
|             this.panel1.PerformLayout();
 | |
|             ((System.ComponentModel.ISupportInitialize)(this.dgvEventsKind)).EndInit();
 | |
|             this.ResumeLayout(false);
 | |
|             this.PerformLayout();
 | |
| 
 | |
|         }
 | |
| 
 | |
|         #endregion
 | |
| 
 | |
|         public System.Windows.Forms.ToolStrip toolStrip1;
 | |
|         private System.Windows.Forms.ToolStripButton tsbAdd;
 | |
|         private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
 | |
|         private System.Windows.Forms.ToolStripButton tsbModify;
 | |
|         private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
 | |
|         private System.Windows.Forms.ToolStripButton tsbCancel;
 | |
|         private System.Windows.Forms.ToolStripSeparator toolStripSeparator3;
 | |
|         private System.Windows.Forms.ToolStripButton tsbSava;
 | |
|         private System.Windows.Forms.ToolStripSeparator toolStripSeparator4;
 | |
|         public System.Windows.Forms.ToolStripButton tsbExit;
 | |
|         private System.Windows.Forms.Panel panel1;
 | |
|         private System.Windows.Forms.ComboBox cboEventKind;
 | |
|         private System.Windows.Forms.Label label5;
 | |
|         private System.Windows.Forms.Label label2;
 | |
|         private System.Windows.Forms.CheckBox chkIsValid;
 | |
|         private System.Windows.Forms.TextBox txtName;
 | |
|         private System.Windows.Forms.Label label1;
 | |
|         private System.Windows.Forms.DataGridView dgvEventsKind;
 | |
|         private System.Windows.Forms.TextBox txtHelpCode;
 | |
|         private System.Windows.Forms.Label label3;
 | |
|         private System.Windows.Forms.TextBox txtUseRate;
 | |
|         private System.Windows.Forms.Label label6;
 | |
|         private System.Windows.Forms.Label label4;
 | |
|         private System.Windows.Forms.Label label17;
 | |
|         private System.Windows.Forms.Label label7;
 | |
|         private System.Windows.Forms.TextBox txtRemark;
 | |
|         private System.Windows.Forms.DataGridViewTextBoxColumn Id;
 | |
|         private System.Windows.Forms.DataGridViewTextBoxColumn EventKind;
 | |
|         private System.Windows.Forms.DataGridViewTextBoxColumn NameColumn;
 | |
|         private System.Windows.Forms.DataGridViewTextBoxColumn HelpCode;
 | |
|         private System.Windows.Forms.DataGridViewTextBoxColumn UseRate;
 | |
|         private System.Windows.Forms.DataGridViewTextBoxColumn Remark;
 | |
|         private System.Windows.Forms.DataGridViewTextBoxColumn IsValid;
 | |
|     }
 | |
| } |