InputBox.Designer.cs 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. namespace PicSo
  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.textBox1 = new System.Windows.Forms.TextBox();
  29. this.btn_OK = new System.Windows.Forms.Button();
  30. this.SuspendLayout();
  31. //
  32. // textBox1
  33. //
  34. this.textBox1.Location = new System.Drawing.Point(12, 12);
  35. this.textBox1.Name = "textBox1";
  36. this.textBox1.Size = new System.Drawing.Size(368, 21);
  37. this.textBox1.TabIndex = 0;
  38. this.textBox1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox1_KeyPress);
  39. //
  40. // btn_OK
  41. //
  42. this.btn_OK.Location = new System.Drawing.Point(386, 10);
  43. this.btn_OK.Name = "btn_OK";
  44. this.btn_OK.Size = new System.Drawing.Size(75, 23);
  45. this.btn_OK.TabIndex = 1;
  46. this.btn_OK.Text = "OK";
  47. this.btn_OK.UseVisualStyleBackColor = true;
  48. this.btn_OK.Click += new System.EventHandler(this.btn_OK_Click);
  49. //
  50. // InputBox
  51. //
  52. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  53. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  54. this.ClientSize = new System.Drawing.Size(473, 45);
  55. this.Controls.Add(this.btn_OK);
  56. this.Controls.Add(this.textBox1);
  57. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
  58. this.Name = "InputBox";
  59. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  60. this.Text = "输入";
  61. this.ResumeLayout(false);
  62. this.PerformLayout();
  63. }
  64. #endregion
  65. private System.Windows.Forms.TextBox textBox1;
  66. private System.Windows.Forms.Button btn_OK;
  67. }
  68. }