/Dialogs/JumpToKeyDialog.Designer.cs

# · C# · 108 lines · 76 code · 6 blank · 26 comment · 3 complexity · d7102c352730fb8aad955c7ccbdfa2e0 MD5 · raw file

  1. namespace CrackSoft.RegExplore
  2. {
  3. partial class JumpToKeyDialog
  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.btnOK = new System.Windows.Forms.Button();
  29. this.btnCancel = new System.Windows.Forms.Button();
  30. this.txtKeyPath = new System.Windows.Forms.TextBox();
  31. this.label1 = new System.Windows.Forms.Label();
  32. this.SuspendLayout();
  33. //
  34. // btnOK
  35. //
  36. this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
  37. this.btnOK.Enabled = false;
  38. this.btnOK.Location = new System.Drawing.Point(124, 65);
  39. this.btnOK.Name = "btnOK";
  40. this.btnOK.Size = new System.Drawing.Size(75, 23);
  41. this.btnOK.TabIndex = 1;
  42. this.btnOK.Text = "&OK";
  43. this.btnOK.UseVisualStyleBackColor = true;
  44. //
  45. // btnCancel
  46. //
  47. this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  48. this.btnCancel.Location = new System.Drawing.Point(205, 65);
  49. this.btnCancel.Name = "btnCancel";
  50. this.btnCancel.Size = new System.Drawing.Size(75, 23);
  51. this.btnCancel.TabIndex = 2;
  52. this.btnCancel.Text = "&Cancel";
  53. this.btnCancel.UseVisualStyleBackColor = true;
  54. //
  55. // txtKeyPath
  56. //
  57. this.txtKeyPath.Location = new System.Drawing.Point(12, 28);
  58. this.txtKeyPath.Name = "txtKeyPath";
  59. this.txtKeyPath.Size = new System.Drawing.Size(268, 20);
  60. this.txtKeyPath.TabIndex = 0;
  61. this.txtKeyPath.TextChanged += new System.EventHandler(this.txtKeyPath_TextChanged);
  62. //
  63. // label1
  64. //
  65. this.label1.AutoSize = true;
  66. this.label1.Location = new System.Drawing.Point(12, 9);
  67. this.label1.Name = "label1";
  68. this.label1.Size = new System.Drawing.Size(82, 13);
  69. this.label1.TabIndex = 3;
  70. this.label1.Text = "Path of the key:";
  71. //
  72. // JumpToKeyDialog
  73. //
  74. this.AcceptButton = this.btnOK;
  75. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  76. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  77. this.CancelButton = this.btnCancel;
  78. this.ClientSize = new System.Drawing.Size(292, 100);
  79. this.Controls.Add(this.label1);
  80. this.Controls.Add(this.txtKeyPath);
  81. this.Controls.Add(this.btnCancel);
  82. this.Controls.Add(this.btnOK);
  83. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
  84. this.KeyPreview = true;
  85. this.MaximizeBox = false;
  86. this.MinimizeBox = false;
  87. this.Name = "JumpToKeyDialog";
  88. this.ShowIcon = false;
  89. this.ShowInTaskbar = false;
  90. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  91. this.Text = "Jump To Key";
  92. this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.JumpToKeyDialog_KeyDown);
  93. this.ResumeLayout(false);
  94. this.PerformLayout();
  95. }
  96. #endregion
  97. private System.Windows.Forms.Button btnOK;
  98. private System.Windows.Forms.Button btnCancel;
  99. private System.Windows.Forms.Label label1;
  100. public System.Windows.Forms.TextBox txtKeyPath;
  101. }
  102. }