/Dialogs/ExportDialog.Designer.cs

# · C# · 159 lines · 115 code · 6 blank · 38 comment · 3 complexity · 7d417ff0b1dd368e63f70959e23859b7 MD5 · raw file

  1. namespace CrackSoft.RegExplore
  2. {
  3. partial class ExportDialog
  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.btnExport = new System.Windows.Forms.Button();
  30. this.btnCancel = new System.Windows.Forms.Button();
  31. this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
  32. this.btnBrowse = new System.Windows.Forms.Button();
  33. this.txtFile = new System.Windows.Forms.TextBox();
  34. this.label2 = new System.Windows.Forms.Label();
  35. this.cmbBranch = new System.Windows.Forms.ComboBox();
  36. this.SuspendLayout();
  37. //
  38. // label1
  39. //
  40. this.label1.AutoSize = true;
  41. this.label1.Location = new System.Drawing.Point(9, 47);
  42. this.label1.Name = "label1";
  43. this.label1.Size = new System.Drawing.Size(44, 13);
  44. this.label1.TabIndex = 1;
  45. this.label1.Text = "Branch:";
  46. //
  47. // btnExport
  48. //
  49. this.btnExport.Enabled = false;
  50. this.btnExport.Location = new System.Drawing.Point(196, 76);
  51. this.btnExport.Name = "btnExport";
  52. this.btnExport.Size = new System.Drawing.Size(75, 23);
  53. this.btnExport.TabIndex = 3;
  54. this.btnExport.Text = "Export";
  55. this.btnExport.UseVisualStyleBackColor = true;
  56. this.btnExport.Click += new System.EventHandler(this.btnExport_Click);
  57. //
  58. // btnCancel
  59. //
  60. this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  61. this.btnCancel.Location = new System.Drawing.Point(277, 76);
  62. this.btnCancel.Name = "btnCancel";
  63. this.btnCancel.Size = new System.Drawing.Size(75, 23);
  64. this.btnCancel.TabIndex = 4;
  65. this.btnCancel.Text = "Cancel";
  66. this.btnCancel.UseVisualStyleBackColor = true;
  67. //
  68. // saveFileDialog1
  69. //
  70. this.saveFileDialog1.Filter = "Registry Files (*.reg)|*.reg|XML Files (*.xml)|*.xml|Text Files (*.txt)|*.txt";
  71. //
  72. // btnBrowse
  73. //
  74. this.btnBrowse.Location = new System.Drawing.Point(277, 12);
  75. this.btnBrowse.Name = "btnBrowse";
  76. this.btnBrowse.Size = new System.Drawing.Size(75, 23);
  77. this.btnBrowse.TabIndex = 2;
  78. this.btnBrowse.Text = "&Browse";
  79. this.btnBrowse.UseVisualStyleBackColor = true;
  80. this.btnBrowse.Click += new System.EventHandler(this.btnBrowse_Click);
  81. //
  82. // txtFile
  83. //
  84. this.txtFile.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
  85. this.txtFile.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.FileSystem;
  86. this.txtFile.Location = new System.Drawing.Point(59, 12);
  87. this.txtFile.Name = "txtFile";
  88. this.txtFile.ReadOnly = true;
  89. this.txtFile.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  90. this.txtFile.Size = new System.Drawing.Size(212, 20);
  91. this.txtFile.TabIndex = 0;
  92. this.txtFile.TextChanged += new System.EventHandler(this.txtFile_TextChanged);
  93. //
  94. // label2
  95. //
  96. this.label2.AutoSize = true;
  97. this.label2.Location = new System.Drawing.Point(27, 12);
  98. this.label2.Name = "label2";
  99. this.label2.Size = new System.Drawing.Size(26, 13);
  100. this.label2.TabIndex = 6;
  101. this.label2.Text = "File:";
  102. //
  103. // cmbBranch
  104. //
  105. this.cmbBranch.FormattingEnabled = true;
  106. this.cmbBranch.Items.AddRange(new object[] {
  107. "HKEY_CLASSES_ROOT",
  108. "HKEY_CURRENT_USER",
  109. "HKEY_LOCAL_MACHINE",
  110. "HKEY_USERS",
  111. "HKEY_CURRENT_CONFIG"});
  112. this.cmbBranch.Location = new System.Drawing.Point(59, 44);
  113. this.cmbBranch.Name = "cmbBranch";
  114. this.cmbBranch.Size = new System.Drawing.Size(293, 21);
  115. this.cmbBranch.TabIndex = 1;
  116. this.cmbBranch.TextChanged += new System.EventHandler(this.cmbBranch_TextChanged);
  117. //
  118. // ExportDialog
  119. //
  120. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  121. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  122. this.CancelButton = this.btnCancel;
  123. this.ClientSize = new System.Drawing.Size(364, 114);
  124. this.Controls.Add(this.cmbBranch);
  125. this.Controls.Add(this.btnBrowse);
  126. this.Controls.Add(this.txtFile);
  127. this.Controls.Add(this.label2);
  128. this.Controls.Add(this.btnCancel);
  129. this.Controls.Add(this.btnExport);
  130. this.Controls.Add(this.label1);
  131. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
  132. this.MaximizeBox = false;
  133. this.MinimizeBox = false;
  134. this.Name = "ExportDialog";
  135. this.ShowIcon = false;
  136. this.ShowInTaskbar = false;
  137. this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
  138. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  139. this.Text = "Export Registry Key";
  140. this.ResumeLayout(false);
  141. this.PerformLayout();
  142. }
  143. #endregion
  144. private System.Windows.Forms.Label label1;
  145. private System.Windows.Forms.Button btnExport;
  146. private System.Windows.Forms.Button btnCancel;
  147. private System.Windows.Forms.SaveFileDialog saveFileDialog1;
  148. private System.Windows.Forms.Button btnBrowse;
  149. private System.Windows.Forms.TextBox txtFile;
  150. private System.Windows.Forms.Label label2;
  151. public System.Windows.Forms.ComboBox cmbBranch;
  152. }
  153. }