comparison 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
comparison
equal deleted inserted replaced
-1:000000000000 0:8ac8eb805b6c
1 namespace AutoCRCheck {
2 partial class frmOptions {
3 /// <summary>
4 /// Required designer variable.
5 /// </summary>
6 private System.ComponentModel.IContainer components = null;
7
8 /// <summary>
9 /// Clean up any resources being used.
10 /// </summary>
11 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12 protected override void Dispose(bool disposing) {
13 if (disposing && (components != null)) {
14 components.Dispose();
15 }
16 base.Dispose(disposing);
17 }
18
19 #region Windows Form Designer generated code
20
21 /// <summary>
22 /// Required method for Designer support - do not modify
23 /// the contents of this method with the code editor.
24 /// </summary>
25 private void InitializeComponent() {
26 this.fbdDirectoryBrowser = new System.Windows.Forms.FolderBrowserDialog();
27 this.label1 = new System.Windows.Forms.Label();
28 this.label2 = new System.Windows.Forms.Label();
29 this.txtRootDirectory = new System.Windows.Forms.TextBox();
30 this.btnRootDirectoryBrowse = new System.Windows.Forms.Button();
31 this.groupBox1 = new System.Windows.Forms.GroupBox();
32 this.radMismatchRename = new System.Windows.Forms.RadioButton();
33 this.radMismatchDelete = new System.Windows.Forms.RadioButton();
34 this.radMismatchNoAction = new System.Windows.Forms.RadioButton();
35 this.txtMismatchRenameSuffix = new System.Windows.Forms.TextBox();
36 this.btnStart = new System.Windows.Forms.Button();
37 this.groupBox1.SuspendLayout();
38 this.SuspendLayout();
39 //
40 // label1
41 //
42 this.label1.AutoSize = true;
43 this.label1.Location = new System.Drawing.Point(12, 65);
44 this.label1.Name = "label1";
45 this.label1.Size = new System.Drawing.Size(76, 13);
46 this.label1.TabIndex = 0;
47 this.label1.Text = "Root directory:";
48 //
49 // label2
50 //
51 this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
52 | System.Windows.Forms.AnchorStyles.Right)));
53 this.label2.Location = new System.Drawing.Point(12, 9);
54 this.label2.Name = "label2";
55 this.label2.Size = new System.Drawing.Size(518, 50);
56 this.label2.TabIndex = 1;
57 this.label2.Text = "UCIS AutoCRCheck will recursively scan specified folder, looking for any .SFV fil" +
58 "es and checking the CRC checksums for the listed files. Mismatching files can be" +
59 " deleted or renamed.";
60 //
61 // txtRootDirectory
62 //
63 this.txtRootDirectory.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
64 | System.Windows.Forms.AnchorStyles.Right)));
65 this.txtRootDirectory.Location = new System.Drawing.Point(94, 62);
66 this.txtRootDirectory.Name = "txtRootDirectory";
67 this.txtRootDirectory.Size = new System.Drawing.Size(396, 20);
68 this.txtRootDirectory.TabIndex = 2;
69 //
70 // btnRootDirectoryBrowse
71 //
72 this.btnRootDirectoryBrowse.Location = new System.Drawing.Point(496, 62);
73 this.btnRootDirectoryBrowse.Name = "btnRootDirectoryBrowse";
74 this.btnRootDirectoryBrowse.Size = new System.Drawing.Size(34, 20);
75 this.btnRootDirectoryBrowse.TabIndex = 3;
76 this.btnRootDirectoryBrowse.Text = "...";
77 this.btnRootDirectoryBrowse.UseVisualStyleBackColor = true;
78 this.btnRootDirectoryBrowse.Click += new System.EventHandler(this.btnRootDirectoryBrowse_Click);
79 //
80 // groupBox1
81 //
82 this.groupBox1.Controls.Add(this.radMismatchRename);
83 this.groupBox1.Controls.Add(this.radMismatchDelete);
84 this.groupBox1.Controls.Add(this.radMismatchNoAction);
85 this.groupBox1.Controls.Add(this.txtMismatchRenameSuffix);
86 this.groupBox1.Location = new System.Drawing.Point(15, 88);
87 this.groupBox1.Name = "groupBox1";
88 this.groupBox1.Size = new System.Drawing.Size(515, 90);
89 this.groupBox1.TabIndex = 4;
90 this.groupBox1.TabStop = false;
91 this.groupBox1.Text = "Mismatching files";
92 //
93 // radMismatchRename
94 //
95 this.radMismatchRename.AutoSize = true;
96 this.radMismatchRename.Location = new System.Drawing.Point(6, 65);
97 this.radMismatchRename.Name = "radMismatchRename";
98 this.radMismatchRename.Size = new System.Drawing.Size(153, 17);
99 this.radMismatchRename.TabIndex = 3;
100 this.radMismatchRename.Text = "Rename file, append suffix:";
101 this.radMismatchRename.UseVisualStyleBackColor = true;
102 this.radMismatchRename.CheckedChanged += new System.EventHandler(this.radMismatch_CheckedChanged);
103 //
104 // radMismatchDelete
105 //
106 this.radMismatchDelete.AutoSize = true;
107 this.radMismatchDelete.Location = new System.Drawing.Point(6, 42);
108 this.radMismatchDelete.Name = "radMismatchDelete";
109 this.radMismatchDelete.Size = new System.Drawing.Size(72, 17);
110 this.radMismatchDelete.TabIndex = 2;
111 this.radMismatchDelete.Text = "Delete file";
112 this.radMismatchDelete.UseVisualStyleBackColor = true;
113 this.radMismatchDelete.CheckedChanged += new System.EventHandler(this.radMismatch_CheckedChanged);
114 //
115 // radMismatchNoAction
116 //
117 this.radMismatchNoAction.AutoSize = true;
118 this.radMismatchNoAction.Checked = true;
119 this.radMismatchNoAction.Location = new System.Drawing.Point(6, 19);
120 this.radMismatchNoAction.Name = "radMismatchNoAction";
121 this.radMismatchNoAction.Size = new System.Drawing.Size(77, 17);
122 this.radMismatchNoAction.TabIndex = 1;
123 this.radMismatchNoAction.TabStop = true;
124 this.radMismatchNoAction.Text = "Do nothing";
125 this.radMismatchNoAction.UseVisualStyleBackColor = true;
126 this.radMismatchNoAction.CheckedChanged += new System.EventHandler(this.radMismatch_CheckedChanged);
127 //
128 // txtMismatchRenameSuffix
129 //
130 this.txtMismatchRenameSuffix.Enabled = false;
131 this.txtMismatchRenameSuffix.Location = new System.Drawing.Point(165, 64);
132 this.txtMismatchRenameSuffix.Name = "txtMismatchRenameSuffix";
133 this.txtMismatchRenameSuffix.Size = new System.Drawing.Size(100, 20);
134 this.txtMismatchRenameSuffix.TabIndex = 0;
135 this.txtMismatchRenameSuffix.Text = ".badcrc";
136 //
137 // btnStart
138 //
139 this.btnStart.Location = new System.Drawing.Point(455, 184);
140 this.btnStart.Name = "btnStart";
141 this.btnStart.Size = new System.Drawing.Size(75, 23);
142 this.btnStart.TabIndex = 5;
143 this.btnStart.Text = "Start";
144 this.btnStart.UseVisualStyleBackColor = true;
145 this.btnStart.Click += new System.EventHandler(this.btnStart_Click);
146 //
147 // frmOptions
148 //
149 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
150 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
151 this.ClientSize = new System.Drawing.Size(542, 213);
152 this.Controls.Add(this.btnStart);
153 this.Controls.Add(this.groupBox1);
154 this.Controls.Add(this.btnRootDirectoryBrowse);
155 this.Controls.Add(this.txtRootDirectory);
156 this.Controls.Add(this.label2);
157 this.Controls.Add(this.label1);
158 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
159 this.MaximizeBox = false;
160 this.MinimizeBox = false;
161 this.Name = "frmOptions";
162 this.Text = "UCIS AutoCRCheck options";
163 this.Load += new System.EventHandler(this.Form1_Load);
164 this.groupBox1.ResumeLayout(false);
165 this.groupBox1.PerformLayout();
166 this.ResumeLayout(false);
167 this.PerformLayout();
168
169 }
170
171 #endregion
172
173 private System.Windows.Forms.FolderBrowserDialog fbdDirectoryBrowser;
174 private System.Windows.Forms.Label label1;
175 private System.Windows.Forms.Label label2;
176 private System.Windows.Forms.TextBox txtRootDirectory;
177 private System.Windows.Forms.Button btnRootDirectoryBrowse;
178 private System.Windows.Forms.GroupBox groupBox1;
179 private System.Windows.Forms.RadioButton radMismatchRename;
180 private System.Windows.Forms.RadioButton radMismatchDelete;
181 private System.Windows.Forms.RadioButton radMismatchNoAction;
182 private System.Windows.Forms.TextBox txtMismatchRenameSuffix;
183 private System.Windows.Forms.Button btnStart;
184 }
185 }