/Dialogs/ExportDialog.Designer.cs
# · C# · 159 lines · 115 code · 6 blank · 38 comment · 3 complexity · 7d417ff0b1dd368e63f70959e23859b7 MD5 · raw file
- namespace CrackSoft.RegExplore
- {
- partial class ExportDialog
- {
- /// <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.label1 = new System.Windows.Forms.Label();
- this.btnExport = new System.Windows.Forms.Button();
- this.btnCancel = new System.Windows.Forms.Button();
- this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
- this.btnBrowse = new System.Windows.Forms.Button();
- this.txtFile = new System.Windows.Forms.TextBox();
- this.label2 = new System.Windows.Forms.Label();
- this.cmbBranch = new System.Windows.Forms.ComboBox();
- this.SuspendLayout();
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Location = new System.Drawing.Point(9, 47);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(44, 13);
- this.label1.TabIndex = 1;
- this.label1.Text = "Branch:";
- //
- // btnExport
- //
- this.btnExport.Enabled = false;
- this.btnExport.Location = new System.Drawing.Point(196, 76);
- this.btnExport.Name = "btnExport";
- this.btnExport.Size = new System.Drawing.Size(75, 23);
- this.btnExport.TabIndex = 3;
- this.btnExport.Text = "Export";
- this.btnExport.UseVisualStyleBackColor = true;
- this.btnExport.Click += new System.EventHandler(this.btnExport_Click);
- //
- // btnCancel
- //
- this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
- this.btnCancel.Location = new System.Drawing.Point(277, 76);
- this.btnCancel.Name = "btnCancel";
- this.btnCancel.Size = new System.Drawing.Size(75, 23);
- this.btnCancel.TabIndex = 4;
- this.btnCancel.Text = "Cancel";
- this.btnCancel.UseVisualStyleBackColor = true;
- //
- // saveFileDialog1
- //
- this.saveFileDialog1.Filter = "Registry Files (*.reg)|*.reg|XML Files (*.xml)|*.xml|Text Files (*.txt)|*.txt";
- //
- // btnBrowse
- //
- this.btnBrowse.Location = new System.Drawing.Point(277, 12);
- this.btnBrowse.Name = "btnBrowse";
- this.btnBrowse.Size = new System.Drawing.Size(75, 23);
- this.btnBrowse.TabIndex = 2;
- this.btnBrowse.Text = "&Browse";
- this.btnBrowse.UseVisualStyleBackColor = true;
- this.btnBrowse.Click += new System.EventHandler(this.btnBrowse_Click);
- //
- // txtFile
- //
- this.txtFile.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
- this.txtFile.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.FileSystem;
- this.txtFile.Location = new System.Drawing.Point(59, 12);
- this.txtFile.Name = "txtFile";
- this.txtFile.ReadOnly = true;
- this.txtFile.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
- this.txtFile.Size = new System.Drawing.Size(212, 20);
- this.txtFile.TabIndex = 0;
- this.txtFile.TextChanged += new System.EventHandler(this.txtFile_TextChanged);
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Location = new System.Drawing.Point(27, 12);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(26, 13);
- this.label2.TabIndex = 6;
- this.label2.Text = "File:";
- //
- // cmbBranch
- //
- this.cmbBranch.FormattingEnabled = true;
- this.cmbBranch.Items.AddRange(new object[] {
- "HKEY_CLASSES_ROOT",
- "HKEY_CURRENT_USER",
- "HKEY_LOCAL_MACHINE",
- "HKEY_USERS",
- "HKEY_CURRENT_CONFIG"});
- this.cmbBranch.Location = new System.Drawing.Point(59, 44);
- this.cmbBranch.Name = "cmbBranch";
- this.cmbBranch.Size = new System.Drawing.Size(293, 21);
- this.cmbBranch.TabIndex = 1;
- this.cmbBranch.TextChanged += new System.EventHandler(this.cmbBranch_TextChanged);
- //
- // ExportDialog
- //
- 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(364, 114);
- this.Controls.Add(this.cmbBranch);
- this.Controls.Add(this.btnBrowse);
- this.Controls.Add(this.txtFile);
- this.Controls.Add(this.label2);
- this.Controls.Add(this.btnCancel);
- this.Controls.Add(this.btnExport);
- this.Controls.Add(this.label1);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
- this.MaximizeBox = false;
- this.MinimizeBox = false;
- this.Name = "ExportDialog";
- this.ShowIcon = false;
- this.ShowInTaskbar = false;
- this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
- this.Text = "Export Registry Key";
- this.ResumeLayout(false);
- this.PerformLayout();
-
- }
-
- #endregion
-
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Button btnExport;
- private System.Windows.Forms.Button btnCancel;
- private System.Windows.Forms.SaveFileDialog saveFileDialog1;
- private System.Windows.Forms.Button btnBrowse;
- private System.Windows.Forms.TextBox txtFile;
- private System.Windows.Forms.Label label2;
- public System.Windows.Forms.ComboBox cmbBranch;
- }
- }