frmInitializeLengthAndWidthRectangle.Designer.cs 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. namespace OTSMeasureApp._4_OTSSamplespaceGraphicsPanel
  2. {
  3. partial class frmInitializeLengthAndWidthRectangle
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.label1 = new System.Windows.Forms.Label();
  29. this.tB_length = new System.Windows.Forms.TextBox();
  30. this.tB_width = new System.Windows.Forms.TextBox();
  31. this.label2 = new System.Windows.Forms.Label();
  32. this.btn_ok = new System.Windows.Forms.Button();
  33. this.btn_cannel = new System.Windows.Forms.Button();
  34. this.groupBox1 = new System.Windows.Forms.GroupBox();
  35. this.radioButton_center = new System.Windows.Forms.RadioButton();
  36. this.radioButton_lefttop = new System.Windows.Forms.RadioButton();
  37. this.panel1 = new System.Windows.Forms.Panel();
  38. this.label3 = new System.Windows.Forms.Label();
  39. this.groupBox1.SuspendLayout();
  40. this.panel1.SuspendLayout();
  41. this.SuspendLayout();
  42. //
  43. // label1
  44. //
  45. this.label1.AutoSize = true;
  46. this.label1.Location = new System.Drawing.Point(437, 172);
  47. this.label1.Name = "label1";
  48. this.label1.Size = new System.Drawing.Size(23, 12);
  49. this.label1.TabIndex = 0;
  50. this.label1.Text = "长:";
  51. //
  52. // tB_length
  53. //
  54. this.tB_length.Location = new System.Drawing.Point(475, 169);
  55. this.tB_length.Name = "tB_length";
  56. this.tB_length.Size = new System.Drawing.Size(100, 21);
  57. this.tB_length.TabIndex = 1;
  58. this.tB_length.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  59. //
  60. // tB_width
  61. //
  62. this.tB_width.Location = new System.Drawing.Point(475, 218);
  63. this.tB_width.Name = "tB_width";
  64. this.tB_width.Size = new System.Drawing.Size(100, 21);
  65. this.tB_width.TabIndex = 3;
  66. this.tB_width.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  67. //
  68. // label2
  69. //
  70. this.label2.AutoSize = true;
  71. this.label2.Location = new System.Drawing.Point(437, 221);
  72. this.label2.Name = "label2";
  73. this.label2.Size = new System.Drawing.Size(23, 12);
  74. this.label2.TabIndex = 2;
  75. this.label2.Text = "宽:";
  76. //
  77. // btn_ok
  78. //
  79. this.btn_ok.Location = new System.Drawing.Point(504, 354);
  80. this.btn_ok.Name = "btn_ok";
  81. this.btn_ok.Size = new System.Drawing.Size(75, 23);
  82. this.btn_ok.TabIndex = 4;
  83. this.btn_ok.Text = "OK";
  84. this.btn_ok.UseVisualStyleBackColor = true;
  85. this.btn_ok.Click += new System.EventHandler(this.btn_ok_Click);
  86. //
  87. // btn_cannel
  88. //
  89. this.btn_cannel.Location = new System.Drawing.Point(585, 354);
  90. this.btn_cannel.Name = "btn_cannel";
  91. this.btn_cannel.Size = new System.Drawing.Size(75, 23);
  92. this.btn_cannel.TabIndex = 5;
  93. this.btn_cannel.Text = "Cannel";
  94. this.btn_cannel.UseVisualStyleBackColor = true;
  95. this.btn_cannel.Click += new System.EventHandler(this.btn_cannel_Click);
  96. //
  97. // groupBox1
  98. //
  99. this.groupBox1.Controls.Add(this.radioButton_center);
  100. this.groupBox1.Controls.Add(this.radioButton_lefttop);
  101. this.groupBox1.Location = new System.Drawing.Point(428, 13);
  102. this.groupBox1.Name = "groupBox1";
  103. this.groupBox1.Size = new System.Drawing.Size(232, 110);
  104. this.groupBox1.TabIndex = 8;
  105. this.groupBox1.TabStop = false;
  106. this.groupBox1.Text = "调整参照点";
  107. //
  108. // radioButton_center
  109. //
  110. this.radioButton_center.AutoSize = true;
  111. this.radioButton_center.Location = new System.Drawing.Point(47, 67);
  112. this.radioButton_center.Name = "radioButton_center";
  113. this.radioButton_center.Size = new System.Drawing.Size(83, 16);
  114. this.radioButton_center.TabIndex = 1;
  115. this.radioButton_center.Text = "矩形中心点";
  116. this.radioButton_center.UseVisualStyleBackColor = true;
  117. //
  118. // radioButton_lefttop
  119. //
  120. this.radioButton_lefttop.AutoSize = true;
  121. this.radioButton_lefttop.Checked = true;
  122. this.radioButton_lefttop.Location = new System.Drawing.Point(47, 28);
  123. this.radioButton_lefttop.Name = "radioButton_lefttop";
  124. this.radioButton_lefttop.Size = new System.Drawing.Size(83, 16);
  125. this.radioButton_lefttop.TabIndex = 0;
  126. this.radioButton_lefttop.TabStop = true;
  127. this.radioButton_lefttop.Text = "左上角顶点";
  128. this.radioButton_lefttop.UseVisualStyleBackColor = true;
  129. //
  130. // panel1
  131. //
  132. this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  133. this.panel1.Controls.Add(this.label3);
  134. this.panel1.Location = new System.Drawing.Point(13, 13);
  135. this.panel1.Name = "panel1";
  136. this.panel1.Size = new System.Drawing.Size(407, 364);
  137. this.panel1.TabIndex = 9;
  138. //
  139. // label3
  140. //
  141. this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  142. this.label3.AutoSize = true;
  143. this.label3.Location = new System.Drawing.Point(338, 347);
  144. this.label3.Name = "label3";
  145. this.label3.Size = new System.Drawing.Size(65, 12);
  146. this.label3.TabIndex = 0;
  147. this.label3.Text = "单位:微米";
  148. //
  149. // frmInitializeLengthAndWidthRectangle
  150. //
  151. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  152. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  153. this.ClientSize = new System.Drawing.Size(672, 391);
  154. this.Controls.Add(this.panel1);
  155. this.Controls.Add(this.groupBox1);
  156. this.Controls.Add(this.btn_cannel);
  157. this.Controls.Add(this.btn_ok);
  158. this.Controls.Add(this.tB_width);
  159. this.Controls.Add(this.label2);
  160. this.Controls.Add(this.tB_length);
  161. this.Controls.Add(this.label1);
  162. this.MaximizeBox = false;
  163. this.Name = "frmInitializeLengthAndWidthRectangle";
  164. this.ShowIcon = false;
  165. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  166. this.Text = "长宽法";
  167. this.Load += new System.EventHandler(this.frmInitializeLengthAndWidthRectangle_Load);
  168. this.groupBox1.ResumeLayout(false);
  169. this.groupBox1.PerformLayout();
  170. this.panel1.ResumeLayout(false);
  171. this.panel1.PerformLayout();
  172. this.ResumeLayout(false);
  173. this.PerformLayout();
  174. }
  175. #endregion
  176. private System.Windows.Forms.Label label1;
  177. private System.Windows.Forms.TextBox tB_length;
  178. private System.Windows.Forms.TextBox tB_width;
  179. private System.Windows.Forms.Label label2;
  180. private System.Windows.Forms.Button btn_ok;
  181. private System.Windows.Forms.Button btn_cannel;
  182. private System.Windows.Forms.GroupBox groupBox1;
  183. private System.Windows.Forms.Panel panel1;
  184. private System.Windows.Forms.RadioButton radioButton_center;
  185. private System.Windows.Forms.RadioButton radioButton_lefttop;
  186. private System.Windows.Forms.Label label3;
  187. }
  188. }