/Dialogs/JumpToKeyDialog.Designer.cs
# · C# · 108 lines · 76 code · 6 blank · 26 comment · 3 complexity · d7102c352730fb8aad955c7ccbdfa2e0 MD5 · raw file
- namespace CrackSoft.RegExplore
- {
- partial class JumpToKeyDialog
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
-
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
-
- #region Windows Form Designer generated code
-
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.btnOK = new System.Windows.Forms.Button();
- this.btnCancel = new System.Windows.Forms.Button();
- this.txtKeyPath = new System.Windows.Forms.TextBox();
- this.label1 = new System.Windows.Forms.Label();
- this.SuspendLayout();
- //
- // btnOK
- //
- this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
- this.btnOK.Enabled = false;
- this.btnOK.Location = new System.Drawing.Point(124, 65);
- this.btnOK.Name = "btnOK";
- this.btnOK.Size = new System.Drawing.Size(75, 23);
- this.btnOK.TabIndex = 1;
- this.btnOK.Text = "&OK";
- this.btnOK.UseVisualStyleBackColor = true;
- //
- // btnCancel
- //
- this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
- this.btnCancel.Location = new System.Drawing.Point(205, 65);
- this.btnCancel.Name = "btnCancel";
- this.btnCancel.Size = new System.Drawing.Size(75, 23);
- this.btnCancel.TabIndex = 2;
- this.btnCancel.Text = "&Cancel";
- this.btnCancel.UseVisualStyleBackColor = true;
- //
- // txtKeyPath
- //
- this.txtKeyPath.Location = new System.Drawing.Point(12, 28);
- this.txtKeyPath.Name = "txtKeyPath";
- this.txtKeyPath.Size = new System.Drawing.Size(268, 20);
- this.txtKeyPath.TabIndex = 0;
- this.txtKeyPath.TextChanged += new System.EventHandler(this.txtKeyPath_TextChanged);
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Location = new System.Drawing.Point(12, 9);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(82, 13);
- this.label1.TabIndex = 3;
- this.label1.Text = "Path of the key:";
- //
- // JumpToKeyDialog
- //
- this.AcceptButton = this.btnOK;
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.CancelButton = this.btnCancel;
- this.ClientSize = new System.Drawing.Size(292, 100);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.txtKeyPath);
- this.Controls.Add(this.btnCancel);
- this.Controls.Add(this.btnOK);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
- this.KeyPreview = true;
- this.MaximizeBox = false;
- this.MinimizeBox = false;
- this.Name = "JumpToKeyDialog";
- this.ShowIcon = false;
- this.ShowInTaskbar = false;
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
- this.Text = "Jump To Key";
- this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.JumpToKeyDialog_KeyDown);
- this.ResumeLayout(false);
- this.PerformLayout();
-
- }
-
- #endregion
-
- private System.Windows.Forms.Button btnOK;
- private System.Windows.Forms.Button btnCancel;
- private System.Windows.Forms.Label label1;
- public System.Windows.Forms.TextBox txtKeyPath;
- }
- }