You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

InputBox.Designer.cs 3.8 kB

5 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. namespace Shadowsocks.View
  2. {
  3. partial class InputBox
  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.textBox1 = new System.Windows.Forms.TextBox();
  30. this.btnOK = new System.Windows.Forms.Button();
  31. this.button2 = new System.Windows.Forms.Button();
  32. this.SuspendLayout();
  33. //
  34. // label1
  35. //
  36. this.label1.AutoSize = true;
  37. this.label1.Location = new System.Drawing.Point(12, 9);
  38. this.label1.Name = "label1";
  39. this.label1.Size = new System.Drawing.Size(55, 15);
  40. this.label1.TabIndex = 0;
  41. this.label1.Text = "label1";
  42. //
  43. // textBox1
  44. //
  45. this.textBox1.Location = new System.Drawing.Point(13, 51);
  46. this.textBox1.Name = "textBox1";
  47. this.textBox1.Size = new System.Drawing.Size(484, 25);
  48. this.textBox1.TabIndex = 1;
  49. //
  50. // btnOK
  51. //
  52. this.btnOK.Location = new System.Drawing.Point(321, 91);
  53. this.btnOK.Name = "btnOK";
  54. this.btnOK.Size = new System.Drawing.Size(75, 31);
  55. this.btnOK.TabIndex = 2;
  56. this.btnOK.Text = "OK";
  57. this.btnOK.UseVisualStyleBackColor = true;
  58. //
  59. // button2
  60. //
  61. this.button2.Location = new System.Drawing.Point(422, 91);
  62. this.button2.Name = "button2";
  63. this.button2.Size = new System.Drawing.Size(75, 31);
  64. this.button2.TabIndex = 3;
  65. this.button2.Text = "Cancel";
  66. this.button2.UseVisualStyleBackColor = true;
  67. //
  68. // InputBox
  69. //
  70. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  71. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  72. this.ClientSize = new System.Drawing.Size(554, 134);
  73. this.Controls.Add(this.button2);
  74. this.Controls.Add(this.btnOK);
  75. this.Controls.Add(this.textBox1);
  76. this.Controls.Add(this.label1);
  77. this.DoubleBuffered = true;
  78. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
  79. this.MaximizeBox = false;
  80. this.MinimizeBox = false;
  81. this.Name = "InputBox";
  82. this.ShowInTaskbar = false;
  83. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  84. this.Text = "InputBox";
  85. this.ResumeLayout(false);
  86. this.PerformLayout();
  87. }
  88. #endregion
  89. private System.Windows.Forms.Label label1;
  90. private System.Windows.Forms.TextBox textBox1;
  91. private System.Windows.Forms.Button btnOK;
  92. private System.Windows.Forms.Button button2;
  93. }
  94. }