SayHiForm.Designer.cs 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. namespace HelloNppPluginDockWindow
  2. {
  3. partial class SayHiForm
  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.SuspendLayout();
  31. //
  32. // label1
  33. //
  34. this.label1.AutoSize = true;
  35. this.label1.Location = new System.Drawing.Point(6, 9);
  36. this.label1.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
  37. this.label1.Name = "label1";
  38. this.label1.Size = new System.Drawing.Size(287, 33);
  39. this.label1.TabIndex = 0;
  40. this.label1.Text = "Hi NppPluginByC#";
  41. //
  42. // textBox1
  43. //
  44. this.textBox1.Location = new System.Drawing.Point(12, 55);
  45. this.textBox1.Name = "textBox1";
  46. this.textBox1.Size = new System.Drawing.Size(217, 45);
  47. this.textBox1.TabIndex = 1;
  48. //
  49. // SayHiForm
  50. //
  51. this.AutoScaleDimensions = new System.Drawing.SizeF(17F, 33F);
  52. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  53. this.ClientSize = new System.Drawing.Size(637, 431);
  54. this.Controls.Add(this.textBox1);
  55. this.Controls.Add(this.label1);
  56. this.Font = new System.Drawing.Font("宋体", 19.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  57. this.Margin = new System.Windows.Forms.Padding(6, 7, 6, 7);
  58. this.Name = "SayHiForm";
  59. this.Text = "SayHiForm";
  60. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.SayHiForm_FormClosing);
  61. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.SayHiForm_FormClosed);
  62. this.Shown += new System.EventHandler(this.SayHiForm_Shown);
  63. this.ParentChanged += new System.EventHandler(this.SayHiForm_ParentChanged);
  64. this.ResumeLayout(false);
  65. this.PerformLayout();
  66. }
  67. #endregion
  68. public System.Windows.Forms.Label label1;
  69. private System.Windows.Forms.TextBox textBox1;
  70. }
  71. }