frmInitializeTwoPointRectangle.Designer.cs 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531
  1. namespace OTSMeasureApp._4_OTSSamplespaceGraphicsPanel
  2. {
  3. partial class frmInitializeTwoPointRectangle
  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.groupBox1 = new System.Windows.Forms.GroupBox();
  29. this.tB_LTPointWD = new System.Windows.Forms.TextBox();
  30. this.label8 = new System.Windows.Forms.Label();
  31. this.btn_gtLTPoint = new System.Windows.Forms.Button();
  32. this.bn_FirstPoint = new System.Windows.Forms.Button();
  33. this.label2 = new System.Windows.Forms.Label();
  34. this.tB_LTPointX = new System.Windows.Forms.TextBox();
  35. this.label3 = new System.Windows.Forms.Label();
  36. this.tB_LTPointY = new System.Windows.Forms.TextBox();
  37. this.groupBox2 = new System.Windows.Forms.GroupBox();
  38. this.tBx_RBPointWD = new System.Windows.Forms.TextBox();
  39. this.label7 = new System.Windows.Forms.Label();
  40. this.btn_gtRBPoint = new System.Windows.Forms.Button();
  41. this.tB_RBPointY = new System.Windows.Forms.TextBox();
  42. this.label5 = new System.Windows.Forms.Label();
  43. this.tB_RBPointX = new System.Windows.Forms.TextBox();
  44. this.label4 = new System.Windows.Forms.Label();
  45. this.bn_SecondPoint = new System.Windows.Forms.Button();
  46. this.bn_Cancel = new System.Windows.Forms.Button();
  47. this.bn_OK = new System.Windows.Forms.Button();
  48. this.panel1 = new System.Windows.Forms.Panel();
  49. this.panel2 = new System.Windows.Forms.Panel();
  50. this.label11 = new System.Windows.Forms.Label();
  51. this.panel3 = new System.Windows.Forms.Panel();
  52. this.tBx_Magnification = new System.Windows.Forms.TextBox();
  53. this.label10 = new System.Windows.Forms.Label();
  54. this.groupBox3 = new System.Windows.Forms.GroupBox();
  55. this.tBx_TheThirdPointWD = new System.Windows.Forms.TextBox();
  56. this.label9 = new System.Windows.Forms.Label();
  57. this.btn_gtTheThirdPoint = new System.Windows.Forms.Button();
  58. this.bn_TheThirdPoint = new System.Windows.Forms.Button();
  59. this.label1 = new System.Windows.Forms.Label();
  60. this.tBx_TheThirdPointX = new System.Windows.Forms.TextBox();
  61. this.label6 = new System.Windows.Forms.Label();
  62. this.tBx_TheThirdPointY = new System.Windows.Forms.TextBox();
  63. this.cB_Inclinedplanefocus = new System.Windows.Forms.CheckBox();
  64. this.groupBox1.SuspendLayout();
  65. this.groupBox2.SuspendLayout();
  66. this.panel2.SuspendLayout();
  67. this.panel3.SuspendLayout();
  68. this.groupBox3.SuspendLayout();
  69. this.SuspendLayout();
  70. //
  71. // groupBox1
  72. //
  73. this.groupBox1.Controls.Add(this.tB_LTPointWD);
  74. this.groupBox1.Controls.Add(this.label8);
  75. this.groupBox1.Controls.Add(this.btn_gtLTPoint);
  76. this.groupBox1.Controls.Add(this.bn_FirstPoint);
  77. this.groupBox1.Controls.Add(this.label2);
  78. this.groupBox1.Controls.Add(this.tB_LTPointX);
  79. this.groupBox1.Controls.Add(this.label3);
  80. this.groupBox1.Controls.Add(this.tB_LTPointY);
  81. this.groupBox1.Location = new System.Drawing.Point(13, 13);
  82. this.groupBox1.Margin = new System.Windows.Forms.Padding(2);
  83. this.groupBox1.Name = "groupBox1";
  84. this.groupBox1.Padding = new System.Windows.Forms.Padding(2);
  85. this.groupBox1.Size = new System.Drawing.Size(572, 84);
  86. this.groupBox1.TabIndex = 20;
  87. this.groupBox1.TabStop = false;
  88. this.groupBox1.Text = "LeftTopPoint";
  89. //
  90. // tB_LTPointWD
  91. //
  92. this.tB_LTPointWD.Location = new System.Drawing.Point(291, 30);
  93. this.tB_LTPointWD.Margin = new System.Windows.Forms.Padding(2);
  94. this.tB_LTPointWD.Name = "tB_LTPointWD";
  95. this.tB_LTPointWD.ReadOnly = true;
  96. this.tB_LTPointWD.Size = new System.Drawing.Size(83, 21);
  97. this.tB_LTPointWD.TabIndex = 10;
  98. this.tB_LTPointWD.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  99. //
  100. // label8
  101. //
  102. this.label8.AutoSize = true;
  103. this.label8.Location = new System.Drawing.Point(263, 33);
  104. this.label8.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  105. this.label8.Name = "label8";
  106. this.label8.Size = new System.Drawing.Size(23, 12);
  107. this.label8.TabIndex = 9;
  108. this.label8.Text = "WD:";
  109. //
  110. // btn_gtLTPoint
  111. //
  112. this.btn_gtLTPoint.Location = new System.Drawing.Point(478, 30);
  113. this.btn_gtLTPoint.Name = "btn_gtLTPoint";
  114. this.btn_gtLTPoint.Size = new System.Drawing.Size(65, 19);
  115. this.btn_gtLTPoint.TabIndex = 7;
  116. this.btn_gtLTPoint.Text = "Goto";
  117. this.btn_gtLTPoint.UseVisualStyleBackColor = true;
  118. this.btn_gtLTPoint.Click += new System.EventHandler(this.button1_Click);
  119. //
  120. // bn_FirstPoint
  121. //
  122. this.bn_FirstPoint.Location = new System.Drawing.Point(394, 30);
  123. this.bn_FirstPoint.Margin = new System.Windows.Forms.Padding(2);
  124. this.bn_FirstPoint.Name = "bn_FirstPoint";
  125. this.bn_FirstPoint.Size = new System.Drawing.Size(72, 20);
  126. this.bn_FirstPoint.TabIndex = 6;
  127. this.bn_FirstPoint.Text = "Obtain";
  128. this.bn_FirstPoint.UseVisualStyleBackColor = true;
  129. this.bn_FirstPoint.Click += new System.EventHandler(this.bn_FirstPoint_Click);
  130. //
  131. // label2
  132. //
  133. this.label2.AutoSize = true;
  134. this.label2.Location = new System.Drawing.Point(24, 32);
  135. this.label2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  136. this.label2.Name = "label2";
  137. this.label2.Size = new System.Drawing.Size(17, 12);
  138. this.label2.TabIndex = 2;
  139. this.label2.Text = "X:";
  140. //
  141. // tB_LTPointX
  142. //
  143. this.tB_LTPointX.Location = new System.Drawing.Point(51, 30);
  144. this.tB_LTPointX.Margin = new System.Windows.Forms.Padding(2);
  145. this.tB_LTPointX.Name = "tB_LTPointX";
  146. this.tB_LTPointX.Size = new System.Drawing.Size(76, 21);
  147. this.tB_LTPointX.TabIndex = 3;
  148. this.tB_LTPointX.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  149. //
  150. // label3
  151. //
  152. this.label3.AutoSize = true;
  153. this.label3.Location = new System.Drawing.Point(147, 32);
  154. this.label3.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  155. this.label3.Name = "label3";
  156. this.label3.Size = new System.Drawing.Size(17, 12);
  157. this.label3.TabIndex = 4;
  158. this.label3.Text = "Y:";
  159. //
  160. // tB_LTPointY
  161. //
  162. this.tB_LTPointY.Location = new System.Drawing.Point(174, 30);
  163. this.tB_LTPointY.Margin = new System.Windows.Forms.Padding(2);
  164. this.tB_LTPointY.Name = "tB_LTPointY";
  165. this.tB_LTPointY.Size = new System.Drawing.Size(76, 21);
  166. this.tB_LTPointY.TabIndex = 5;
  167. this.tB_LTPointY.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  168. //
  169. // groupBox2
  170. //
  171. this.groupBox2.Controls.Add(this.tBx_RBPointWD);
  172. this.groupBox2.Controls.Add(this.label7);
  173. this.groupBox2.Controls.Add(this.btn_gtRBPoint);
  174. this.groupBox2.Controls.Add(this.tB_RBPointY);
  175. this.groupBox2.Controls.Add(this.label5);
  176. this.groupBox2.Controls.Add(this.tB_RBPointX);
  177. this.groupBox2.Controls.Add(this.label4);
  178. this.groupBox2.Controls.Add(this.bn_SecondPoint);
  179. this.groupBox2.Location = new System.Drawing.Point(13, 123);
  180. this.groupBox2.Margin = new System.Windows.Forms.Padding(2);
  181. this.groupBox2.Name = "groupBox2";
  182. this.groupBox2.Padding = new System.Windows.Forms.Padding(2);
  183. this.groupBox2.Size = new System.Drawing.Size(572, 76);
  184. this.groupBox2.TabIndex = 21;
  185. this.groupBox2.TabStop = false;
  186. this.groupBox2.Text = "RightBottomPoint";
  187. //
  188. // tBx_RBPointWD
  189. //
  190. this.tBx_RBPointWD.Location = new System.Drawing.Point(291, 31);
  191. this.tBx_RBPointWD.Margin = new System.Windows.Forms.Padding(2);
  192. this.tBx_RBPointWD.Name = "tBx_RBPointWD";
  193. this.tBx_RBPointWD.ReadOnly = true;
  194. this.tBx_RBPointWD.Size = new System.Drawing.Size(83, 21);
  195. this.tBx_RBPointWD.TabIndex = 15;
  196. this.tBx_RBPointWD.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  197. //
  198. // label7
  199. //
  200. this.label7.AutoSize = true;
  201. this.label7.Location = new System.Drawing.Point(263, 34);
  202. this.label7.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  203. this.label7.Name = "label7";
  204. this.label7.Size = new System.Drawing.Size(23, 12);
  205. this.label7.TabIndex = 14;
  206. this.label7.Text = "WD:";
  207. //
  208. // btn_gtRBPoint
  209. //
  210. this.btn_gtRBPoint.Location = new System.Drawing.Point(478, 34);
  211. this.btn_gtRBPoint.Name = "btn_gtRBPoint";
  212. this.btn_gtRBPoint.Size = new System.Drawing.Size(67, 19);
  213. this.btn_gtRBPoint.TabIndex = 13;
  214. this.btn_gtRBPoint.Text = "Goto";
  215. this.btn_gtRBPoint.UseVisualStyleBackColor = true;
  216. this.btn_gtRBPoint.Click += new System.EventHandler(this.button2_Click);
  217. //
  218. // tB_RBPointY
  219. //
  220. this.tB_RBPointY.Location = new System.Drawing.Point(174, 30);
  221. this.tB_RBPointY.Margin = new System.Windows.Forms.Padding(2);
  222. this.tB_RBPointY.Name = "tB_RBPointY";
  223. this.tB_RBPointY.Size = new System.Drawing.Size(76, 21);
  224. this.tB_RBPointY.TabIndex = 11;
  225. this.tB_RBPointY.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  226. //
  227. // label5
  228. //
  229. this.label5.AutoSize = true;
  230. this.label5.Location = new System.Drawing.Point(24, 34);
  231. this.label5.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  232. this.label5.Name = "label5";
  233. this.label5.Size = new System.Drawing.Size(17, 12);
  234. this.label5.TabIndex = 8;
  235. this.label5.Text = "X:";
  236. //
  237. // tB_RBPointX
  238. //
  239. this.tB_RBPointX.Location = new System.Drawing.Point(51, 30);
  240. this.tB_RBPointX.Margin = new System.Windows.Forms.Padding(2);
  241. this.tB_RBPointX.Name = "tB_RBPointX";
  242. this.tB_RBPointX.Size = new System.Drawing.Size(76, 21);
  243. this.tB_RBPointX.TabIndex = 9;
  244. this.tB_RBPointX.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  245. //
  246. // label4
  247. //
  248. this.label4.AutoSize = true;
  249. this.label4.Location = new System.Drawing.Point(147, 34);
  250. this.label4.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  251. this.label4.Name = "label4";
  252. this.label4.Size = new System.Drawing.Size(17, 12);
  253. this.label4.TabIndex = 10;
  254. this.label4.Text = "Y:";
  255. //
  256. // bn_SecondPoint
  257. //
  258. this.bn_SecondPoint.Location = new System.Drawing.Point(397, 32);
  259. this.bn_SecondPoint.Margin = new System.Windows.Forms.Padding(2);
  260. this.bn_SecondPoint.Name = "bn_SecondPoint";
  261. this.bn_SecondPoint.Size = new System.Drawing.Size(72, 20);
  262. this.bn_SecondPoint.TabIndex = 12;
  263. this.bn_SecondPoint.Text = "Obtain";
  264. this.bn_SecondPoint.UseVisualStyleBackColor = true;
  265. this.bn_SecondPoint.Click += new System.EventHandler(this.bn_SecondPoint_Click);
  266. //
  267. // bn_Cancel
  268. //
  269. this.bn_Cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  270. this.bn_Cancel.Location = new System.Drawing.Point(517, 595);
  271. this.bn_Cancel.Margin = new System.Windows.Forms.Padding(2);
  272. this.bn_Cancel.Name = "bn_Cancel";
  273. this.bn_Cancel.Size = new System.Drawing.Size(68, 26);
  274. this.bn_Cancel.TabIndex = 23;
  275. this.bn_Cancel.Text = "Cancel";
  276. this.bn_Cancel.UseVisualStyleBackColor = true;
  277. this.bn_Cancel.Click += new System.EventHandler(this.bn_Cancel_Click);
  278. //
  279. // bn_OK
  280. //
  281. this.bn_OK.DialogResult = System.Windows.Forms.DialogResult.OK;
  282. this.bn_OK.Location = new System.Drawing.Point(420, 595);
  283. this.bn_OK.Margin = new System.Windows.Forms.Padding(2);
  284. this.bn_OK.Name = "bn_OK";
  285. this.bn_OK.Size = new System.Drawing.Size(73, 26);
  286. this.bn_OK.TabIndex = 22;
  287. this.bn_OK.Text = "OK";
  288. this.bn_OK.UseVisualStyleBackColor = true;
  289. this.bn_OK.Click += new System.EventHandler(this.bn_OK_Click);
  290. //
  291. // panel1
  292. //
  293. this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  294. this.panel1.Location = new System.Drawing.Point(13, 11);
  295. this.panel1.Name = "panel1";
  296. this.panel1.Size = new System.Drawing.Size(461, 475);
  297. this.panel1.TabIndex = 24;
  298. //
  299. // panel2
  300. //
  301. this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  302. this.panel2.Controls.Add(this.label11);
  303. this.panel2.Location = new System.Drawing.Point(12, 483);
  304. this.panel2.Name = "panel2";
  305. this.panel2.Size = new System.Drawing.Size(462, 165);
  306. this.panel2.TabIndex = 25;
  307. //
  308. // label11
  309. //
  310. this.label11.AutoSize = true;
  311. this.label11.Location = new System.Drawing.Point(17, 19);
  312. this.label11.Name = "label11";
  313. this.label11.Size = new System.Drawing.Size(233, 12);
  314. this.label11.TabIndex = 0;
  315. this.label11.Text = "注:第三点请不要位于前两点所在的直线上!";
  316. //
  317. // panel3
  318. //
  319. this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  320. this.panel3.Controls.Add(this.tBx_Magnification);
  321. this.panel3.Controls.Add(this.label10);
  322. this.panel3.Controls.Add(this.cB_Inclinedplanefocus);
  323. this.panel3.Controls.Add(this.bn_Cancel);
  324. this.panel3.Controls.Add(this.bn_OK);
  325. this.panel3.Controls.Add(this.groupBox3);
  326. this.panel3.Controls.Add(this.groupBox2);
  327. this.panel3.Controls.Add(this.groupBox1);
  328. this.panel3.Location = new System.Drawing.Point(481, 11);
  329. this.panel3.Name = "panel3";
  330. this.panel3.Size = new System.Drawing.Size(598, 637);
  331. this.panel3.TabIndex = 26;
  332. //
  333. // tBx_Magnification
  334. //
  335. this.tBx_Magnification.Location = new System.Drawing.Point(108, 386);
  336. this.tBx_Magnification.Name = "tBx_Magnification";
  337. this.tBx_Magnification.Size = new System.Drawing.Size(100, 21);
  338. this.tBx_Magnification.TabIndex = 26;
  339. this.tBx_Magnification.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  340. //
  341. // label10
  342. //
  343. this.label10.AutoSize = true;
  344. this.label10.Location = new System.Drawing.Point(13, 389);
  345. this.label10.Name = "label10";
  346. this.label10.Size = new System.Drawing.Size(89, 12);
  347. this.label10.TabIndex = 25;
  348. this.label10.Text = "Magnification:";
  349. //
  350. // groupBox3
  351. //
  352. this.groupBox3.Controls.Add(this.tBx_TheThirdPointWD);
  353. this.groupBox3.Controls.Add(this.label9);
  354. this.groupBox3.Controls.Add(this.btn_gtTheThirdPoint);
  355. this.groupBox3.Controls.Add(this.bn_TheThirdPoint);
  356. this.groupBox3.Controls.Add(this.label1);
  357. this.groupBox3.Controls.Add(this.tBx_TheThirdPointX);
  358. this.groupBox3.Controls.Add(this.label6);
  359. this.groupBox3.Controls.Add(this.tBx_TheThirdPointY);
  360. this.groupBox3.Location = new System.Drawing.Point(13, 262);
  361. this.groupBox3.Margin = new System.Windows.Forms.Padding(2);
  362. this.groupBox3.Name = "groupBox3";
  363. this.groupBox3.Padding = new System.Windows.Forms.Padding(2);
  364. this.groupBox3.Size = new System.Drawing.Size(572, 84);
  365. this.groupBox3.TabIndex = 22;
  366. this.groupBox3.TabStop = false;
  367. this.groupBox3.Text = "TheThirdPoint";
  368. //
  369. // tBx_TheThirdPointWD
  370. //
  371. this.tBx_TheThirdPointWD.Location = new System.Drawing.Point(291, 30);
  372. this.tBx_TheThirdPointWD.Margin = new System.Windows.Forms.Padding(2);
  373. this.tBx_TheThirdPointWD.Name = "tBx_TheThirdPointWD";
  374. this.tBx_TheThirdPointWD.ReadOnly = true;
  375. this.tBx_TheThirdPointWD.Size = new System.Drawing.Size(83, 21);
  376. this.tBx_TheThirdPointWD.TabIndex = 17;
  377. this.tBx_TheThirdPointWD.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  378. //
  379. // label9
  380. //
  381. this.label9.AutoSize = true;
  382. this.label9.Location = new System.Drawing.Point(263, 33);
  383. this.label9.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  384. this.label9.Name = "label9";
  385. this.label9.Size = new System.Drawing.Size(23, 12);
  386. this.label9.TabIndex = 16;
  387. this.label9.Text = "WD:";
  388. //
  389. // btn_gtTheThirdPoint
  390. //
  391. this.btn_gtTheThirdPoint.Location = new System.Drawing.Point(478, 29);
  392. this.btn_gtTheThirdPoint.Name = "btn_gtTheThirdPoint";
  393. this.btn_gtTheThirdPoint.Size = new System.Drawing.Size(65, 19);
  394. this.btn_gtTheThirdPoint.TabIndex = 7;
  395. this.btn_gtTheThirdPoint.Text = "Goto";
  396. this.btn_gtTheThirdPoint.UseVisualStyleBackColor = true;
  397. this.btn_gtTheThirdPoint.Click += new System.EventHandler(this.btn_gtTheThirdPoint_Click);
  398. //
  399. // bn_TheThirdPoint
  400. //
  401. this.bn_TheThirdPoint.Location = new System.Drawing.Point(394, 29);
  402. this.bn_TheThirdPoint.Margin = new System.Windows.Forms.Padding(2);
  403. this.bn_TheThirdPoint.Name = "bn_TheThirdPoint";
  404. this.bn_TheThirdPoint.Size = new System.Drawing.Size(72, 20);
  405. this.bn_TheThirdPoint.TabIndex = 6;
  406. this.bn_TheThirdPoint.Text = "Obtain";
  407. this.bn_TheThirdPoint.UseVisualStyleBackColor = true;
  408. this.bn_TheThirdPoint.Click += new System.EventHandler(this.bn_TheThirdPoint_Click);
  409. //
  410. // label1
  411. //
  412. this.label1.AutoSize = true;
  413. this.label1.Location = new System.Drawing.Point(24, 32);
  414. this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  415. this.label1.Name = "label1";
  416. this.label1.Size = new System.Drawing.Size(17, 12);
  417. this.label1.TabIndex = 2;
  418. this.label1.Text = "X:";
  419. //
  420. // tBx_TheThirdPointX
  421. //
  422. this.tBx_TheThirdPointX.Location = new System.Drawing.Point(51, 30);
  423. this.tBx_TheThirdPointX.Margin = new System.Windows.Forms.Padding(2);
  424. this.tBx_TheThirdPointX.Name = "tBx_TheThirdPointX";
  425. this.tBx_TheThirdPointX.Size = new System.Drawing.Size(76, 21);
  426. this.tBx_TheThirdPointX.TabIndex = 3;
  427. this.tBx_TheThirdPointX.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  428. //
  429. // label6
  430. //
  431. this.label6.AutoSize = true;
  432. this.label6.Location = new System.Drawing.Point(147, 32);
  433. this.label6.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  434. this.label6.Name = "label6";
  435. this.label6.Size = new System.Drawing.Size(17, 12);
  436. this.label6.TabIndex = 4;
  437. this.label6.Text = "Y:";
  438. //
  439. // tBx_TheThirdPointY
  440. //
  441. this.tBx_TheThirdPointY.Location = new System.Drawing.Point(174, 30);
  442. this.tBx_TheThirdPointY.Margin = new System.Windows.Forms.Padding(2);
  443. this.tBx_TheThirdPointY.Name = "tBx_TheThirdPointY";
  444. this.tBx_TheThirdPointY.Size = new System.Drawing.Size(76, 21);
  445. this.tBx_TheThirdPointY.TabIndex = 5;
  446. this.tBx_TheThirdPointY.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  447. //
  448. // cB_Inclinedplanefocus
  449. //
  450. this.cB_Inclinedplanefocus.AutoSize = true;
  451. this.cB_Inclinedplanefocus.Location = new System.Drawing.Point(13, 232);
  452. this.cB_Inclinedplanefocus.Name = "cB_Inclinedplanefocus";
  453. this.cB_Inclinedplanefocus.Size = new System.Drawing.Size(144, 16);
  454. this.cB_Inclinedplanefocus.TabIndex = 24;
  455. this.cB_Inclinedplanefocus.Text = "Inclined plane focus";
  456. this.cB_Inclinedplanefocus.UseVisualStyleBackColor = true;
  457. this.cB_Inclinedplanefocus.CheckedChanged += new System.EventHandler(this.cB_Inclinedplanefocus_CheckedChanged);
  458. //
  459. // frmInitializeTwoPointRectangle
  460. //
  461. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  462. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  463. this.ClientSize = new System.Drawing.Size(1091, 656);
  464. this.Controls.Add(this.panel3);
  465. this.Controls.Add(this.panel2);
  466. this.Controls.Add(this.panel1);
  467. this.MaximizeBox = false;
  468. this.MaximumSize = new System.Drawing.Size(1107, 695);
  469. this.MinimumSize = new System.Drawing.Size(1107, 695);
  470. this.Name = "frmInitializeTwoPointRectangle";
  471. this.ShowIcon = false;
  472. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  473. this.Text = "TwoPointRectangle";
  474. this.Load += new System.EventHandler(this.frmInitializeTwoPointRectangle_Load);
  475. this.groupBox1.ResumeLayout(false);
  476. this.groupBox1.PerformLayout();
  477. this.groupBox2.ResumeLayout(false);
  478. this.groupBox2.PerformLayout();
  479. this.panel2.ResumeLayout(false);
  480. this.panel2.PerformLayout();
  481. this.panel3.ResumeLayout(false);
  482. this.panel3.PerformLayout();
  483. this.groupBox3.ResumeLayout(false);
  484. this.groupBox3.PerformLayout();
  485. this.ResumeLayout(false);
  486. }
  487. #endregion
  488. private System.Windows.Forms.GroupBox groupBox1;
  489. private System.Windows.Forms.Button bn_FirstPoint;
  490. private System.Windows.Forms.Label label2;
  491. private System.Windows.Forms.TextBox tB_LTPointX;
  492. private System.Windows.Forms.Label label3;
  493. private System.Windows.Forms.TextBox tB_LTPointY;
  494. private System.Windows.Forms.GroupBox groupBox2;
  495. private System.Windows.Forms.TextBox tB_RBPointY;
  496. private System.Windows.Forms.Label label5;
  497. private System.Windows.Forms.TextBox tB_RBPointX;
  498. private System.Windows.Forms.Label label4;
  499. private System.Windows.Forms.Button bn_SecondPoint;
  500. private System.Windows.Forms.Button bn_Cancel;
  501. private System.Windows.Forms.Button bn_OK;
  502. private System.Windows.Forms.Button btn_gtLTPoint;
  503. private System.Windows.Forms.Button btn_gtRBPoint;
  504. private System.Windows.Forms.Panel panel1;
  505. private System.Windows.Forms.Panel panel2;
  506. private System.Windows.Forms.Panel panel3;
  507. private System.Windows.Forms.GroupBox groupBox3;
  508. private System.Windows.Forms.Button btn_gtTheThirdPoint;
  509. private System.Windows.Forms.Button bn_TheThirdPoint;
  510. private System.Windows.Forms.Label label1;
  511. private System.Windows.Forms.TextBox tBx_TheThirdPointX;
  512. private System.Windows.Forms.Label label6;
  513. private System.Windows.Forms.TextBox tBx_TheThirdPointY;
  514. private System.Windows.Forms.TextBox tB_LTPointWD;
  515. private System.Windows.Forms.Label label8;
  516. private System.Windows.Forms.TextBox tBx_RBPointWD;
  517. private System.Windows.Forms.Label label7;
  518. private System.Windows.Forms.TextBox tBx_TheThirdPointWD;
  519. private System.Windows.Forms.Label label9;
  520. private System.Windows.Forms.TextBox tBx_Magnification;
  521. private System.Windows.Forms.Label label10;
  522. private System.Windows.Forms.Label label11;
  523. private System.Windows.Forms.CheckBox cB_Inclinedplanefocus;
  524. }
  525. }