InputValue.Designer.cs 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. namespace OTSExtremum
  2. {
  3. partial class InputValue
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(InputValue));
  29. this.btnCancel = new System.Windows.Forms.Button();
  30. this.btnOK = new System.Windows.Forms.Button();
  31. this.txtString = new System.Windows.Forms.TextBox();
  32. this.label1 = new System.Windows.Forms.Label();
  33. this.label2 = new System.Windows.Forms.Label();
  34. this.SuspendLayout();
  35. //
  36. // btnCancel
  37. //
  38. this.btnCancel.Location = new System.Drawing.Point(349, 71);
  39. this.btnCancel.Name = "btnCancel";
  40. this.btnCancel.Size = new System.Drawing.Size(95, 35);
  41. this.btnCancel.TabIndex = 5;
  42. this.btnCancel.Text = "取消";
  43. this.btnCancel.UseVisualStyleBackColor = true;
  44. this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
  45. //
  46. // btnOK
  47. //
  48. this.btnOK.Location = new System.Drawing.Point(238, 71);
  49. this.btnOK.Name = "btnOK";
  50. this.btnOK.Size = new System.Drawing.Size(95, 35);
  51. this.btnOK.TabIndex = 4;
  52. this.btnOK.Text = "确定";
  53. this.btnOK.UseVisualStyleBackColor = true;
  54. this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
  55. //
  56. // txtString
  57. //
  58. this.txtString.Location = new System.Drawing.Point(12, 12);
  59. this.txtString.Name = "txtString";
  60. this.txtString.Size = new System.Drawing.Size(375, 28);
  61. this.txtString.TabIndex = 3;
  62. this.txtString.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtString_KeyPress);
  63. //
  64. // label1
  65. //
  66. this.label1.AutoSize = true;
  67. this.label1.Location = new System.Drawing.Point(392, 19);
  68. this.label1.Name = "label1";
  69. this.label1.Size = new System.Drawing.Size(53, 18);
  70. this.label1.TabIndex = 6;
  71. this.label1.Text = "(μm)";
  72. //
  73. // label2
  74. //
  75. this.label2.AutoSize = true;
  76. this.label2.Location = new System.Drawing.Point(12, 48);
  77. this.label2.Name = "label2";
  78. this.label2.Size = new System.Drawing.Size(242, 18);
  79. this.label2.TabIndex = 7;
  80. this.label2.Text = "* 输入多数据用英文逗号分开";
  81. //
  82. // InputValue
  83. //
  84. this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
  85. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  86. this.ClientSize = new System.Drawing.Size(456, 115);
  87. this.Controls.Add(this.label2);
  88. this.Controls.Add(this.label1);
  89. this.Controls.Add(this.btnCancel);
  90. this.Controls.Add(this.btnOK);
  91. this.Controls.Add(this.txtString);
  92. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
  93. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  94. this.MaximizeBox = false;
  95. this.MinimizeBox = false;
  96. this.Name = "InputValue";
  97. this.Text = "添加颗粒";
  98. this.ResumeLayout(false);
  99. this.PerformLayout();
  100. }
  101. #endregion
  102. private System.Windows.Forms.Button btnCancel;
  103. private System.Windows.Forms.Button btnOK;
  104. private System.Windows.Forms.TextBox txtString;
  105. private System.Windows.Forms.Label label1;
  106. private System.Windows.Forms.Label label2;
  107. }
  108. }