|
@@ -0,0 +1,221 @@
|
|
|
+
|
|
|
+namespace OTSMeasureApp
|
|
|
+{
|
|
|
+ partial class SpecialParticleForm
|
|
|
+ {
|
|
|
+ /// <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.dg1 = new System.Windows.Forms.DataGridView();
|
|
|
+ this.confirm = new System.Windows.Forms.Button();
|
|
|
+ this.button2 = new System.Windows.Forms.Button();
|
|
|
+ this.button1 = new System.Windows.Forms.Button();
|
|
|
+ this.button3 = new System.Windows.Forms.Button();
|
|
|
+ this.groupBox1 = new System.Windows.Forms.GroupBox();
|
|
|
+ this.checkBox1 = new System.Windows.Forms.CheckBox();
|
|
|
+ this.RegName = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
|
+ this.start = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
|
+ this.end = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
|
+ this.diameterStart = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
|
+ this.diameterEnd = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
|
+ this.collectXray = new System.Windows.Forms.DataGridViewCheckBoxColumn();
|
|
|
+ this.rangeChoose = new System.Windows.Forms.DataGridViewButtonColumn();
|
|
|
+ ((System.ComponentModel.ISupportInitialize)(this.dg1)).BeginInit();
|
|
|
+ this.groupBox1.SuspendLayout();
|
|
|
+ this.SuspendLayout();
|
|
|
+ //
|
|
|
+ // dg1
|
|
|
+ //
|
|
|
+ this.dg1.AllowUserToAddRows = false;
|
|
|
+ this.dg1.AllowUserToDeleteRows = false;
|
|
|
+ this.dg1.AllowUserToOrderColumns = true;
|
|
|
+ this.dg1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
|
+ this.dg1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
|
|
+ this.RegName,
|
|
|
+ this.start,
|
|
|
+ this.end,
|
|
|
+ this.diameterStart,
|
|
|
+ this.diameterEnd,
|
|
|
+ this.collectXray,
|
|
|
+ this.rangeChoose});
|
|
|
+ this.dg1.Location = new System.Drawing.Point(2, 2);
|
|
|
+ this.dg1.Name = "dg1";
|
|
|
+ this.dg1.RowTemplate.Height = 23;
|
|
|
+ this.dg1.Size = new System.Drawing.Size(779, 312);
|
|
|
+ this.dg1.TabIndex = 2;
|
|
|
+ this.dg1.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dg1_CellContentClick);
|
|
|
+ //
|
|
|
+ // confirm
|
|
|
+ //
|
|
|
+ this.confirm.Location = new System.Drawing.Point(538, 378);
|
|
|
+ this.confirm.Name = "confirm";
|
|
|
+ this.confirm.Size = new System.Drawing.Size(87, 25);
|
|
|
+ this.confirm.TabIndex = 3;
|
|
|
+ this.confirm.Text = "确定";
|
|
|
+ this.confirm.UseVisualStyleBackColor = true;
|
|
|
+ this.confirm.Click += new System.EventHandler(this.confirm_Click);
|
|
|
+ //
|
|
|
+ // button2
|
|
|
+ //
|
|
|
+ this.button2.Location = new System.Drawing.Point(646, 378);
|
|
|
+ this.button2.Name = "button2";
|
|
|
+ this.button2.Size = new System.Drawing.Size(87, 24);
|
|
|
+ this.button2.TabIndex = 4;
|
|
|
+ this.button2.Text = "取消";
|
|
|
+ this.button2.UseVisualStyleBackColor = true;
|
|
|
+ this.button2.Click += new System.EventHandler(this.button2_Click);
|
|
|
+ //
|
|
|
+ // button1
|
|
|
+ //
|
|
|
+ this.button1.Location = new System.Drawing.Point(40, 378);
|
|
|
+ this.button1.Name = "button1";
|
|
|
+ this.button1.Size = new System.Drawing.Size(66, 25);
|
|
|
+ this.button1.TabIndex = 5;
|
|
|
+ this.button1.Text = "增加";
|
|
|
+ this.button1.UseVisualStyleBackColor = true;
|
|
|
+ this.button1.Click += new System.EventHandler(this.button1_Click);
|
|
|
+ //
|
|
|
+ // button3
|
|
|
+ //
|
|
|
+ this.button3.Location = new System.Drawing.Point(130, 379);
|
|
|
+ this.button3.Name = "button3";
|
|
|
+ this.button3.Size = new System.Drawing.Size(62, 22);
|
|
|
+ this.button3.TabIndex = 6;
|
|
|
+ this.button3.Text = "删除";
|
|
|
+ this.button3.UseVisualStyleBackColor = true;
|
|
|
+ this.button3.Click += new System.EventHandler(this.button3_Click);
|
|
|
+ //
|
|
|
+ // groupBox1
|
|
|
+ //
|
|
|
+ this.groupBox1.Controls.Add(this.checkBox1);
|
|
|
+ this.groupBox1.Location = new System.Drawing.Point(4, 318);
|
|
|
+ this.groupBox1.Name = "groupBox1";
|
|
|
+ this.groupBox1.Size = new System.Drawing.Size(776, 45);
|
|
|
+ this.groupBox1.TabIndex = 7;
|
|
|
+ this.groupBox1.TabStop = false;
|
|
|
+ //
|
|
|
+ // checkBox1
|
|
|
+ //
|
|
|
+ this.checkBox1.AutoSize = true;
|
|
|
+ this.checkBox1.Location = new System.Drawing.Point(21, 18);
|
|
|
+ this.checkBox1.Name = "checkBox1";
|
|
|
+ this.checkBox1.Size = new System.Drawing.Size(48, 16);
|
|
|
+ this.checkBox1.TabIndex = 0;
|
|
|
+ this.checkBox1.Text = "启用";
|
|
|
+ this.checkBox1.UseVisualStyleBackColor = true;
|
|
|
+ //
|
|
|
+ // RegName
|
|
|
+ //
|
|
|
+ this.RegName.DataPropertyName = "RegName";
|
|
|
+ this.RegName.HeaderText = "名称";
|
|
|
+ this.RegName.Name = "RegName";
|
|
|
+ this.RegName.Width = 80;
|
|
|
+ //
|
|
|
+ // start
|
|
|
+ //
|
|
|
+ this.start.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
|
|
|
+ this.start.DataPropertyName = "start";
|
|
|
+ this.start.HeaderText = "开始灰度(0-255)";
|
|
|
+ this.start.Name = "start";
|
|
|
+ //
|
|
|
+ // end
|
|
|
+ //
|
|
|
+ this.end.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
|
|
|
+ this.end.DataPropertyName = "end";
|
|
|
+ this.end.HeaderText = "结束灰度(0-255)";
|
|
|
+ this.end.Name = "end";
|
|
|
+ //
|
|
|
+ // diameterStart
|
|
|
+ //
|
|
|
+ this.diameterStart.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
|
|
|
+ this.diameterStart.DataPropertyName = "diameterStart";
|
|
|
+ this.diameterStart.HeaderText = "开始直径(微米)";
|
|
|
+ this.diameterStart.Name = "diameterStart";
|
|
|
+ //
|
|
|
+ // diameterEnd
|
|
|
+ //
|
|
|
+ this.diameterEnd.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
|
|
|
+ this.diameterEnd.DataPropertyName = "diameterEnd";
|
|
|
+ this.diameterEnd.HeaderText = "结束直径(微米)";
|
|
|
+ this.diameterEnd.Name = "diameterEnd";
|
|
|
+ //
|
|
|
+ // collectXray
|
|
|
+ //
|
|
|
+ this.collectXray.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
|
|
|
+ this.collectXray.DataPropertyName = "collectXray";
|
|
|
+ this.collectXray.HeaderText = "是否采集Xray";
|
|
|
+ this.collectXray.Name = "collectXray";
|
|
|
+ this.collectXray.Resizable = System.Windows.Forms.DataGridViewTriState.True;
|
|
|
+ this.collectXray.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
|
|
|
+ //
|
|
|
+ // rangeChoose
|
|
|
+ //
|
|
|
+ this.rangeChoose.HeaderText = "可视化选择";
|
|
|
+ this.rangeChoose.Name = "rangeChoose";
|
|
|
+ this.rangeChoose.Text = "GrayLevel";
|
|
|
+ this.rangeChoose.UseColumnTextForButtonValue = true;
|
|
|
+ //
|
|
|
+ // SpecialParticleForm
|
|
|
+ //
|
|
|
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|
|
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
|
+ this.ClientSize = new System.Drawing.Size(784, 414);
|
|
|
+ this.Controls.Add(this.groupBox1);
|
|
|
+ this.Controls.Add(this.button3);
|
|
|
+ this.Controls.Add(this.button1);
|
|
|
+ this.Controls.Add(this.button2);
|
|
|
+ this.Controls.Add(this.confirm);
|
|
|
+ this.Controls.Add(this.dg1);
|
|
|
+ this.MaximumSize = new System.Drawing.Size(800, 453);
|
|
|
+ this.MinimumSize = new System.Drawing.Size(800, 453);
|
|
|
+ this.Name = "SpecialParticleForm";
|
|
|
+ this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
|
+ this.Text = "特殊灰度阈值颗粒提取";
|
|
|
+ ((System.ComponentModel.ISupportInitialize)(this.dg1)).EndInit();
|
|
|
+ this.groupBox1.ResumeLayout(false);
|
|
|
+ this.groupBox1.PerformLayout();
|
|
|
+ this.ResumeLayout(false);
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ #endregion
|
|
|
+
|
|
|
+ private System.Windows.Forms.DataGridView dg1;
|
|
|
+ private System.Windows.Forms.Button confirm;
|
|
|
+ private System.Windows.Forms.Button button2;
|
|
|
+ private System.Windows.Forms.Button button1;
|
|
|
+ private System.Windows.Forms.Button button3;
|
|
|
+ private System.Windows.Forms.GroupBox groupBox1;
|
|
|
+ private System.Windows.Forms.CheckBox checkBox1;
|
|
|
+ private System.Windows.Forms.DataGridViewTextBoxColumn RegName;
|
|
|
+ private System.Windows.Forms.DataGridViewTextBoxColumn start;
|
|
|
+ private System.Windows.Forms.DataGridViewTextBoxColumn end;
|
|
|
+ private System.Windows.Forms.DataGridViewTextBoxColumn diameterStart;
|
|
|
+ private System.Windows.Forms.DataGridViewTextBoxColumn diameterEnd;
|
|
|
+ private System.Windows.Forms.DataGridViewCheckBoxColumn collectXray;
|
|
|
+ private System.Windows.Forms.DataGridViewButtonColumn rangeChoose;
|
|
|
+ }
|
|
|
+}
|