diff frmOptions.Designer.cs @ 0:8ac8eb805b6c default tip

Initial commit
author Ivo Smits <Ivo@UCIS.nl>
date Fri, 07 Feb 2014 23:23:08 +0100
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/frmOptions.Designer.cs	Fri Feb 07 23:23:08 2014 +0100
@@ -0,0 +1,185 @@
+namespace AutoCRCheck {
+	partial class frmOptions {
+		/// <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.fbdDirectoryBrowser = new System.Windows.Forms.FolderBrowserDialog();
+			this.label1 = new System.Windows.Forms.Label();
+			this.label2 = new System.Windows.Forms.Label();
+			this.txtRootDirectory = new System.Windows.Forms.TextBox();
+			this.btnRootDirectoryBrowse = new System.Windows.Forms.Button();
+			this.groupBox1 = new System.Windows.Forms.GroupBox();
+			this.radMismatchRename = new System.Windows.Forms.RadioButton();
+			this.radMismatchDelete = new System.Windows.Forms.RadioButton();
+			this.radMismatchNoAction = new System.Windows.Forms.RadioButton();
+			this.txtMismatchRenameSuffix = new System.Windows.Forms.TextBox();
+			this.btnStart = new System.Windows.Forms.Button();
+			this.groupBox1.SuspendLayout();
+			this.SuspendLayout();
+			// 
+			// label1
+			// 
+			this.label1.AutoSize = true;
+			this.label1.Location = new System.Drawing.Point(12, 65);
+			this.label1.Name = "label1";
+			this.label1.Size = new System.Drawing.Size(76, 13);
+			this.label1.TabIndex = 0;
+			this.label1.Text = "Root directory:";
+			// 
+			// label2
+			// 
+			this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
+						| System.Windows.Forms.AnchorStyles.Right)));
+			this.label2.Location = new System.Drawing.Point(12, 9);
+			this.label2.Name = "label2";
+			this.label2.Size = new System.Drawing.Size(518, 50);
+			this.label2.TabIndex = 1;
+			this.label2.Text = "UCIS AutoCRCheck will recursively scan specified folder, looking for any .SFV fil" +
+				"es and checking the CRC checksums for the listed files. Mismatching files can be" +
+				" deleted or renamed.";
+			// 
+			// txtRootDirectory
+			// 
+			this.txtRootDirectory.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
+						| System.Windows.Forms.AnchorStyles.Right)));
+			this.txtRootDirectory.Location = new System.Drawing.Point(94, 62);
+			this.txtRootDirectory.Name = "txtRootDirectory";
+			this.txtRootDirectory.Size = new System.Drawing.Size(396, 20);
+			this.txtRootDirectory.TabIndex = 2;
+			// 
+			// btnRootDirectoryBrowse
+			// 
+			this.btnRootDirectoryBrowse.Location = new System.Drawing.Point(496, 62);
+			this.btnRootDirectoryBrowse.Name = "btnRootDirectoryBrowse";
+			this.btnRootDirectoryBrowse.Size = new System.Drawing.Size(34, 20);
+			this.btnRootDirectoryBrowse.TabIndex = 3;
+			this.btnRootDirectoryBrowse.Text = "...";
+			this.btnRootDirectoryBrowse.UseVisualStyleBackColor = true;
+			this.btnRootDirectoryBrowse.Click += new System.EventHandler(this.btnRootDirectoryBrowse_Click);
+			// 
+			// groupBox1
+			// 
+			this.groupBox1.Controls.Add(this.radMismatchRename);
+			this.groupBox1.Controls.Add(this.radMismatchDelete);
+			this.groupBox1.Controls.Add(this.radMismatchNoAction);
+			this.groupBox1.Controls.Add(this.txtMismatchRenameSuffix);
+			this.groupBox1.Location = new System.Drawing.Point(15, 88);
+			this.groupBox1.Name = "groupBox1";
+			this.groupBox1.Size = new System.Drawing.Size(515, 90);
+			this.groupBox1.TabIndex = 4;
+			this.groupBox1.TabStop = false;
+			this.groupBox1.Text = "Mismatching files";
+			// 
+			// radMismatchRename
+			// 
+			this.radMismatchRename.AutoSize = true;
+			this.radMismatchRename.Location = new System.Drawing.Point(6, 65);
+			this.radMismatchRename.Name = "radMismatchRename";
+			this.radMismatchRename.Size = new System.Drawing.Size(153, 17);
+			this.radMismatchRename.TabIndex = 3;
+			this.radMismatchRename.Text = "Rename file, append suffix:";
+			this.radMismatchRename.UseVisualStyleBackColor = true;
+			this.radMismatchRename.CheckedChanged += new System.EventHandler(this.radMismatch_CheckedChanged);
+			// 
+			// radMismatchDelete
+			// 
+			this.radMismatchDelete.AutoSize = true;
+			this.radMismatchDelete.Location = new System.Drawing.Point(6, 42);
+			this.radMismatchDelete.Name = "radMismatchDelete";
+			this.radMismatchDelete.Size = new System.Drawing.Size(72, 17);
+			this.radMismatchDelete.TabIndex = 2;
+			this.radMismatchDelete.Text = "Delete file";
+			this.radMismatchDelete.UseVisualStyleBackColor = true;
+			this.radMismatchDelete.CheckedChanged += new System.EventHandler(this.radMismatch_CheckedChanged);
+			// 
+			// radMismatchNoAction
+			// 
+			this.radMismatchNoAction.AutoSize = true;
+			this.radMismatchNoAction.Checked = true;
+			this.radMismatchNoAction.Location = new System.Drawing.Point(6, 19);
+			this.radMismatchNoAction.Name = "radMismatchNoAction";
+			this.radMismatchNoAction.Size = new System.Drawing.Size(77, 17);
+			this.radMismatchNoAction.TabIndex = 1;
+			this.radMismatchNoAction.TabStop = true;
+			this.radMismatchNoAction.Text = "Do nothing";
+			this.radMismatchNoAction.UseVisualStyleBackColor = true;
+			this.radMismatchNoAction.CheckedChanged += new System.EventHandler(this.radMismatch_CheckedChanged);
+			// 
+			// txtMismatchRenameSuffix
+			// 
+			this.txtMismatchRenameSuffix.Enabled = false;
+			this.txtMismatchRenameSuffix.Location = new System.Drawing.Point(165, 64);
+			this.txtMismatchRenameSuffix.Name = "txtMismatchRenameSuffix";
+			this.txtMismatchRenameSuffix.Size = new System.Drawing.Size(100, 20);
+			this.txtMismatchRenameSuffix.TabIndex = 0;
+			this.txtMismatchRenameSuffix.Text = ".badcrc";
+			// 
+			// btnStart
+			// 
+			this.btnStart.Location = new System.Drawing.Point(455, 184);
+			this.btnStart.Name = "btnStart";
+			this.btnStart.Size = new System.Drawing.Size(75, 23);
+			this.btnStart.TabIndex = 5;
+			this.btnStart.Text = "Start";
+			this.btnStart.UseVisualStyleBackColor = true;
+			this.btnStart.Click += new System.EventHandler(this.btnStart_Click);
+			// 
+			// frmOptions
+			// 
+			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+			this.ClientSize = new System.Drawing.Size(542, 213);
+			this.Controls.Add(this.btnStart);
+			this.Controls.Add(this.groupBox1);
+			this.Controls.Add(this.btnRootDirectoryBrowse);
+			this.Controls.Add(this.txtRootDirectory);
+			this.Controls.Add(this.label2);
+			this.Controls.Add(this.label1);
+			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
+			this.MaximizeBox = false;
+			this.MinimizeBox = false;
+			this.Name = "frmOptions";
+			this.Text = "UCIS AutoCRCheck options";
+			this.Load += new System.EventHandler(this.Form1_Load);
+			this.groupBox1.ResumeLayout(false);
+			this.groupBox1.PerformLayout();
+			this.ResumeLayout(false);
+			this.PerformLayout();
+
+		}
+
+		#endregion
+
+		private System.Windows.Forms.FolderBrowserDialog fbdDirectoryBrowser;
+		private System.Windows.Forms.Label label1;
+		private System.Windows.Forms.Label label2;
+		private System.Windows.Forms.TextBox txtRootDirectory;
+		private System.Windows.Forms.Button btnRootDirectoryBrowse;
+		private System.Windows.Forms.GroupBox groupBox1;
+		private System.Windows.Forms.RadioButton radMismatchRename;
+		private System.Windows.Forms.RadioButton radMismatchDelete;
+		private System.Windows.Forms.RadioButton radMismatchNoAction;
+		private System.Windows.Forms.TextBox txtMismatchRenameSuffix;
+		private System.Windows.Forms.Button btnStart;
+	}
+}
\ No newline at end of file