InputText.Designer.cs 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. namespace OTSExtremum
  2. {
  3. partial class InputText
  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(InputText));
  29. this.txtString = new System.Windows.Forms.TextBox();
  30. this.btnOK = new System.Windows.Forms.Button();
  31. this.btnCancel = new System.Windows.Forms.Button();
  32. this.SuspendLayout();
  33. //
  34. // txtString
  35. //
  36. this.txtString.Location = new System.Drawing.Point(12, 12);
  37. this.txtString.Name = "txtString";
  38. this.txtString.Size = new System.Drawing.Size(375, 28);
  39. this.txtString.TabIndex = 0;
  40. this.txtString.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtString_KeyPress);
  41. //
  42. // btnOK
  43. //
  44. this.btnOK.Location = new System.Drawing.Point(179, 46);
  45. this.btnOK.Name = "btnOK";
  46. this.btnOK.Size = new System.Drawing.Size(95, 35);
  47. this.btnOK.TabIndex = 1;
  48. this.btnOK.Text = "确定";
  49. this.btnOK.UseVisualStyleBackColor = true;
  50. this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
  51. //
  52. // btnCancel
  53. //
  54. this.btnCancel.Location = new System.Drawing.Point(290, 46);
  55. this.btnCancel.Name = "btnCancel";
  56. this.btnCancel.Size = new System.Drawing.Size(95, 35);
  57. this.btnCancel.TabIndex = 2;
  58. this.btnCancel.Text = "取消";
  59. this.btnCancel.UseVisualStyleBackColor = true;
  60. this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
  61. //
  62. // InputText
  63. //
  64. this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
  65. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  66. this.ClientSize = new System.Drawing.Size(397, 98);
  67. this.Controls.Add(this.btnCancel);
  68. this.Controls.Add(this.btnOK);
  69. this.Controls.Add(this.txtString);
  70. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
  71. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  72. this.MaximizeBox = false;
  73. this.MinimizeBox = false;
  74. this.Name = "InputText";
  75. this.Text = "输入分组名称";
  76. this.ResumeLayout(false);
  77. this.PerformLayout();
  78. }
  79. #endregion
  80. private System.Windows.Forms.TextBox txtString;
  81. private System.Windows.Forms.Button btnOK;
  82. private System.Windows.Forms.Button btnCancel;
  83. }
  84. }