frmInitializeLengthAndWidthRectangle.Designer.cs 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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.SuspendLayout();
  35. //
  36. // label1
  37. //
  38. this.label1.AutoSize = true;
  39. this.label1.Location = new System.Drawing.Point(28, 32);
  40. this.label1.Name = "label1";
  41. this.label1.Size = new System.Drawing.Size(23, 12);
  42. this.label1.TabIndex = 0;
  43. this.label1.Text = "长:";
  44. //
  45. // tB_length
  46. //
  47. this.tB_length.Location = new System.Drawing.Point(66, 29);
  48. this.tB_length.Name = "tB_length";
  49. this.tB_length.Size = new System.Drawing.Size(100, 21);
  50. this.tB_length.TabIndex = 1;
  51. this.tB_length.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  52. //
  53. // tB_width
  54. //
  55. this.tB_width.Location = new System.Drawing.Point(66, 70);
  56. this.tB_width.Name = "tB_width";
  57. this.tB_width.Size = new System.Drawing.Size(100, 21);
  58. this.tB_width.TabIndex = 3;
  59. this.tB_width.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  60. //
  61. // label2
  62. //
  63. this.label2.AutoSize = true;
  64. this.label2.Location = new System.Drawing.Point(28, 73);
  65. this.label2.Name = "label2";
  66. this.label2.Size = new System.Drawing.Size(23, 12);
  67. this.label2.TabIndex = 2;
  68. this.label2.Text = "宽:";
  69. //
  70. // btn_ok
  71. //
  72. this.btn_ok.Location = new System.Drawing.Point(221, 96);
  73. this.btn_ok.Name = "btn_ok";
  74. this.btn_ok.Size = new System.Drawing.Size(75, 23);
  75. this.btn_ok.TabIndex = 4;
  76. this.btn_ok.Text = "OK";
  77. this.btn_ok.UseVisualStyleBackColor = true;
  78. this.btn_ok.Click += new System.EventHandler(this.btn_ok_Click);
  79. //
  80. // btn_cannel
  81. //
  82. this.btn_cannel.Location = new System.Drawing.Point(302, 96);
  83. this.btn_cannel.Name = "btn_cannel";
  84. this.btn_cannel.Size = new System.Drawing.Size(75, 23);
  85. this.btn_cannel.TabIndex = 5;
  86. this.btn_cannel.Text = "Cannel";
  87. this.btn_cannel.UseVisualStyleBackColor = true;
  88. this.btn_cannel.Click += new System.EventHandler(this.btn_cannel_Click);
  89. //
  90. // frmInitializeLengthAndWidthRectangle
  91. //
  92. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  93. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  94. this.ClientSize = new System.Drawing.Size(384, 131);
  95. this.Controls.Add(this.btn_cannel);
  96. this.Controls.Add(this.btn_ok);
  97. this.Controls.Add(this.tB_width);
  98. this.Controls.Add(this.label2);
  99. this.Controls.Add(this.tB_length);
  100. this.Controls.Add(this.label1);
  101. this.MaximizeBox = false;
  102. this.Name = "frmInitializeLengthAndWidthRectangle";
  103. this.ShowIcon = false;
  104. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  105. this.Text = "frmInitializeLengthAndWidthRectangle";
  106. this.ResumeLayout(false);
  107. this.PerformLayout();
  108. }
  109. #endregion
  110. private System.Windows.Forms.Label label1;
  111. private System.Windows.Forms.TextBox tB_length;
  112. private System.Windows.Forms.TextBox tB_width;
  113. private System.Windows.Forms.Label label2;
  114. private System.Windows.Forms.Button btn_ok;
  115. private System.Windows.Forms.Button btn_cannel;
  116. }
  117. }