frmGoToLine.designer.cs 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. namespace Demo.Forms
  2. {
  3. partial class FrmGoToLine
  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.button1 = new System.Windows.Forms.Button();
  30. this.textBox1 = new System.Windows.Forms.TextBox();
  31. this.SuspendLayout();
  32. //
  33. // label1
  34. //
  35. this.label1.AutoSize = true;
  36. this.label1.Location = new System.Drawing.Point(12, 9);
  37. this.label1.Name = "label1";
  38. this.label1.Size = new System.Drawing.Size(55, 13);
  39. this.label1.TabIndex = 0;
  40. this.label1.Text = "Go to line:";
  41. //
  42. // button1
  43. //
  44. this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  45. | System.Windows.Forms.AnchorStyles.Right)));
  46. this.button1.Location = new System.Drawing.Point(15, 32);
  47. this.button1.Name = "button1";
  48. this.button1.Size = new System.Drawing.Size(107, 23);
  49. this.button1.TabIndex = 2;
  50. this.button1.Text = "&Go";
  51. this.button1.UseVisualStyleBackColor = true;
  52. this.button1.Click += new System.EventHandler(this.button1_Click);
  53. this.button1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.frmGoToLine_KeyDown);
  54. //
  55. // textBox1
  56. //
  57. this.textBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  58. | System.Windows.Forms.AnchorStyles.Right)));
  59. this.textBox1.Location = new System.Drawing.Point(73, 6);
  60. this.textBox1.Name = "textBox1";
  61. this.textBox1.Size = new System.Drawing.Size(49, 20);
  62. this.textBox1.TabIndex = 1;
  63. this.textBox1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.frmGoToLine_KeyDown);
  64. this.textBox1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox1_KeyPress);
  65. //
  66. // frmGoToLine
  67. //
  68. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  69. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  70. this.ClientSize = new System.Drawing.Size(139, 70);
  71. this.Controls.Add(this.textBox1);
  72. this.Controls.Add(this.button1);
  73. this.Controls.Add(this.label1);
  74. this.Name = "FrmGoToLine";
  75. this.Text = "NppDockableForm";
  76. this.VisibleChanged += new System.EventHandler(this.FrmGoToLineVisibleChanged);
  77. this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.frmGoToLine_KeyDown);
  78. this.ResumeLayout(false);
  79. this.PerformLayout();
  80. }
  81. #endregion
  82. private System.Windows.Forms.Label label1;
  83. private System.Windows.Forms.Button button1;
  84. internal System.Windows.Forms.TextBox textBox1;
  85. }
  86. }