|
@@ -0,0 +1,362 @@
|
|
|
+namespace StrangeFileCopy
|
|
|
+{
|
|
|
+ partial class MainForm
|
|
|
+ {
|
|
|
+ /// <summary>
|
|
|
+ /// 必需的设计器变量。
|
|
|
+ /// </summary>
|
|
|
+ private System.ComponentModel.IContainer components = null;
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 清理所有正在使用的资源。
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
|
|
|
+ protected override void Dispose(bool disposing)
|
|
|
+ {
|
|
|
+ if (disposing && (components != null))
|
|
|
+ {
|
|
|
+ components.Dispose();
|
|
|
+ }
|
|
|
+ base.Dispose(disposing);
|
|
|
+ }
|
|
|
+
|
|
|
+ #region Windows 窗体设计器生成的代码
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 设计器支持所需的方法 - 不要修改
|
|
|
+ /// 使用代码编辑器修改此方法的内容。
|
|
|
+ /// </summary>
|
|
|
+ private void InitializeComponent()
|
|
|
+ {
|
|
|
+ this.components = new System.ComponentModel.Container();
|
|
|
+ this.TotalProgressBar = new System.Windows.Forms.ProgressBar();
|
|
|
+ this.ReOpenProgressBar = new System.Windows.Forms.ProgressBar();
|
|
|
+ this.FromLabel = new System.Windows.Forms.Label();
|
|
|
+ this.FromTextBox = new System.Windows.Forms.TextBox();
|
|
|
+ this.ToTextBox = new System.Windows.Forms.TextBox();
|
|
|
+ this.ToLabel = new System.Windows.Forms.Label();
|
|
|
+ this.FireButton = new System.Windows.Forms.Button();
|
|
|
+ this.Totallabel = new System.Windows.Forms.Label();
|
|
|
+ this.ReOpenLabel = new System.Windows.Forms.Label();
|
|
|
+ this.BufProgressBar = new System.Windows.Forms.ProgressBar();
|
|
|
+ this.BufLabel = new System.Windows.Forms.Label();
|
|
|
+ this.CurrentOpLabel = new System.Windows.Forms.Label();
|
|
|
+ this.CurrentOperationLabel = new System.Windows.Forms.Label();
|
|
|
+ this.ConfigGroupBox = new System.Windows.Forms.GroupBox();
|
|
|
+ this.FlushCheckBox = new System.Windows.Forms.CheckBox();
|
|
|
+ this.ReOpenSizeUnDown = new System.Windows.Forms.NumericUpDown();
|
|
|
+ this.ReOpenGbLabel = new System.Windows.Forms.Label();
|
|
|
+ this.BufSizeUpDown = new System.Windows.Forms.NumericUpDown();
|
|
|
+ this.ReOpenSizeLabel = new System.Windows.Forms.Label();
|
|
|
+ this.BufSizeMbLabel = new System.Windows.Forms.Label();
|
|
|
+ this.BufSizeLabel = new System.Windows.Forms.Label();
|
|
|
+ this.UiUpdateTimer = new System.Windows.Forms.Timer(this.components);
|
|
|
+ this.ConfigGroupBox.SuspendLayout();
|
|
|
+ ((System.ComponentModel.ISupportInitialize)(this.ReOpenSizeUnDown)).BeginInit();
|
|
|
+ ((System.ComponentModel.ISupportInitialize)(this.BufSizeUpDown)).BeginInit();
|
|
|
+ this.SuspendLayout();
|
|
|
+ //
|
|
|
+ // TotalProgressBar
|
|
|
+ //
|
|
|
+ this.TotalProgressBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
|
+ | System.Windows.Forms.AnchorStyles.Right)));
|
|
|
+ this.TotalProgressBar.Location = new System.Drawing.Point(75, 221);
|
|
|
+ this.TotalProgressBar.Name = "TotalProgressBar";
|
|
|
+ this.TotalProgressBar.Size = new System.Drawing.Size(474, 23);
|
|
|
+ this.TotalProgressBar.TabIndex = 0;
|
|
|
+ //
|
|
|
+ // ReOpenProgressBar
|
|
|
+ //
|
|
|
+ this.ReOpenProgressBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
|
+ | System.Windows.Forms.AnchorStyles.Right)));
|
|
|
+ this.ReOpenProgressBar.Location = new System.Drawing.Point(75, 192);
|
|
|
+ this.ReOpenProgressBar.Name = "ReOpenProgressBar";
|
|
|
+ this.ReOpenProgressBar.Size = new System.Drawing.Size(474, 23);
|
|
|
+ this.ReOpenProgressBar.TabIndex = 0;
|
|
|
+ //
|
|
|
+ // FromLabel
|
|
|
+ //
|
|
|
+ this.FromLabel.Location = new System.Drawing.Point(10, 80);
|
|
|
+ this.FromLabel.Name = "FromLabel";
|
|
|
+ this.FromLabel.Size = new System.Drawing.Size(59, 18);
|
|
|
+ this.FromLabel.TabIndex = 1;
|
|
|
+ this.FromLabel.Text = "File From";
|
|
|
+ //
|
|
|
+ // FromTextBox
|
|
|
+ //
|
|
|
+ this.FromTextBox.AllowDrop = true;
|
|
|
+ this.FromTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
|
+ | System.Windows.Forms.AnchorStyles.Right)));
|
|
|
+ this.FromTextBox.Location = new System.Drawing.Point(75, 77);
|
|
|
+ this.FromTextBox.Name = "FromTextBox";
|
|
|
+ this.FromTextBox.ReadOnly = true;
|
|
|
+ this.FromTextBox.Size = new System.Drawing.Size(393, 21);
|
|
|
+ this.FromTextBox.TabIndex = 0;
|
|
|
+ this.FromTextBox.DragDrop += new System.Windows.Forms.DragEventHandler(this.FromTextBox_DragDrop);
|
|
|
+ this.FromTextBox.DragEnter += new System.Windows.Forms.DragEventHandler(this.FromTextBox_DragEnter);
|
|
|
+ //
|
|
|
+ // ToTextBox
|
|
|
+ //
|
|
|
+ this.ToTextBox.AllowDrop = true;
|
|
|
+ this.ToTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
|
+ | System.Windows.Forms.AnchorStyles.Right)));
|
|
|
+ this.ToTextBox.Location = new System.Drawing.Point(75, 104);
|
|
|
+ this.ToTextBox.Name = "ToTextBox";
|
|
|
+ this.ToTextBox.ReadOnly = true;
|
|
|
+ this.ToTextBox.Size = new System.Drawing.Size(393, 21);
|
|
|
+ this.ToTextBox.TabIndex = 1;
|
|
|
+ this.ToTextBox.DragDrop += new System.Windows.Forms.DragEventHandler(this.ToTextBox_DragDrop);
|
|
|
+ this.ToTextBox.DragEnter += new System.Windows.Forms.DragEventHandler(this.ToTextBox_DragEnter);
|
|
|
+ //
|
|
|
+ // ToLabel
|
|
|
+ //
|
|
|
+ this.ToLabel.Location = new System.Drawing.Point(10, 107);
|
|
|
+ this.ToLabel.Name = "ToLabel";
|
|
|
+ this.ToLabel.Size = new System.Drawing.Size(59, 18);
|
|
|
+ this.ToLabel.TabIndex = 1;
|
|
|
+ this.ToLabel.Text = "To Folder";
|
|
|
+ //
|
|
|
+ // FireButton
|
|
|
+ //
|
|
|
+ this.FireButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
|
+ this.FireButton.Location = new System.Drawing.Point(474, 77);
|
|
|
+ this.FireButton.Name = "FireButton";
|
|
|
+ this.FireButton.Size = new System.Drawing.Size(75, 48);
|
|
|
+ this.FireButton.TabIndex = 2;
|
|
|
+ this.FireButton.Text = "Fire!";
|
|
|
+ this.FireButton.UseVisualStyleBackColor = true;
|
|
|
+ this.FireButton.Click += new System.EventHandler(this.FireButton_Click);
|
|
|
+ //
|
|
|
+ // Totallabel
|
|
|
+ //
|
|
|
+ this.Totallabel.Location = new System.Drawing.Point(10, 221);
|
|
|
+ this.Totallabel.Name = "Totallabel";
|
|
|
+ this.Totallabel.Size = new System.Drawing.Size(41, 23);
|
|
|
+ this.Totallabel.TabIndex = 1;
|
|
|
+ this.Totallabel.Text = "Total";
|
|
|
+ this.Totallabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
|
|
+ //
|
|
|
+ // ReOpenLabel
|
|
|
+ //
|
|
|
+ this.ReOpenLabel.Location = new System.Drawing.Point(10, 192);
|
|
|
+ this.ReOpenLabel.Name = "ReOpenLabel";
|
|
|
+ this.ReOpenLabel.Size = new System.Drawing.Size(41, 23);
|
|
|
+ this.ReOpenLabel.TabIndex = 1;
|
|
|
+ this.ReOpenLabel.Text = "ReOpen";
|
|
|
+ this.ReOpenLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
|
|
+ //
|
|
|
+ // BufProgressBar
|
|
|
+ //
|
|
|
+ this.BufProgressBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
|
+ | System.Windows.Forms.AnchorStyles.Right)));
|
|
|
+ this.BufProgressBar.Location = new System.Drawing.Point(75, 163);
|
|
|
+ this.BufProgressBar.Name = "BufProgressBar";
|
|
|
+ this.BufProgressBar.Size = new System.Drawing.Size(474, 23);
|
|
|
+ this.BufProgressBar.TabIndex = 0;
|
|
|
+ //
|
|
|
+ // BufLabel
|
|
|
+ //
|
|
|
+ this.BufLabel.Location = new System.Drawing.Point(12, 163);
|
|
|
+ this.BufLabel.Name = "BufLabel";
|
|
|
+ this.BufLabel.Size = new System.Drawing.Size(39, 23);
|
|
|
+ this.BufLabel.TabIndex = 1;
|
|
|
+ this.BufLabel.Text = "Buf";
|
|
|
+ this.BufLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
|
|
+ //
|
|
|
+ // CurrentOpLabel
|
|
|
+ //
|
|
|
+ this.CurrentOpLabel.AutoSize = true;
|
|
|
+ this.CurrentOpLabel.Location = new System.Drawing.Point(10, 138);
|
|
|
+ this.CurrentOpLabel.Name = "CurrentOpLabel";
|
|
|
+ this.CurrentOpLabel.Size = new System.Drawing.Size(47, 12);
|
|
|
+ this.CurrentOpLabel.TabIndex = 1;
|
|
|
+ this.CurrentOpLabel.Text = "Status:";
|
|
|
+ //
|
|
|
+ // CurrentOperationLabel
|
|
|
+ //
|
|
|
+ this.CurrentOperationLabel.AutoSize = true;
|
|
|
+ this.CurrentOperationLabel.Location = new System.Drawing.Point(87, 138);
|
|
|
+ this.CurrentOperationLabel.Name = "CurrentOperationLabel";
|
|
|
+ this.CurrentOperationLabel.Size = new System.Drawing.Size(35, 12);
|
|
|
+ this.CurrentOperationLabel.TabIndex = 1;
|
|
|
+ this.CurrentOperationLabel.Text = "RWFCO";
|
|
|
+ //
|
|
|
+ // ConfigGroupBox
|
|
|
+ //
|
|
|
+ this.ConfigGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
|
+ | System.Windows.Forms.AnchorStyles.Right)));
|
|
|
+ this.ConfigGroupBox.Controls.Add(this.FlushCheckBox);
|
|
|
+ this.ConfigGroupBox.Controls.Add(this.ReOpenSizeUnDown);
|
|
|
+ this.ConfigGroupBox.Controls.Add(this.ReOpenGbLabel);
|
|
|
+ this.ConfigGroupBox.Controls.Add(this.BufSizeUpDown);
|
|
|
+ this.ConfigGroupBox.Controls.Add(this.ReOpenSizeLabel);
|
|
|
+ this.ConfigGroupBox.Controls.Add(this.BufSizeMbLabel);
|
|
|
+ this.ConfigGroupBox.Controls.Add(this.BufSizeLabel);
|
|
|
+ this.ConfigGroupBox.Location = new System.Drawing.Point(12, 12);
|
|
|
+ this.ConfigGroupBox.Name = "ConfigGroupBox";
|
|
|
+ this.ConfigGroupBox.Size = new System.Drawing.Size(537, 59);
|
|
|
+ this.ConfigGroupBox.TabIndex = 4;
|
|
|
+ this.ConfigGroupBox.TabStop = false;
|
|
|
+ this.ConfigGroupBox.Text = "Config";
|
|
|
+ //
|
|
|
+ // FlushCheckBox
|
|
|
+ //
|
|
|
+ this.FlushCheckBox.AutoSize = true;
|
|
|
+ this.FlushCheckBox.Checked = true;
|
|
|
+ this.FlushCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
|
|
|
+ this.FlushCheckBox.Location = new System.Drawing.Point(156, 23);
|
|
|
+ this.FlushCheckBox.Name = "FlushCheckBox";
|
|
|
+ this.FlushCheckBox.Size = new System.Drawing.Size(54, 16);
|
|
|
+ this.FlushCheckBox.TabIndex = 1;
|
|
|
+ this.FlushCheckBox.Text = "Flush";
|
|
|
+ this.FlushCheckBox.UseVisualStyleBackColor = true;
|
|
|
+ //
|
|
|
+ // ReOpenSizeUnDown
|
|
|
+ //
|
|
|
+ this.ReOpenSizeUnDown.Location = new System.Drawing.Point(332, 20);
|
|
|
+ this.ReOpenSizeUnDown.Maximum = new decimal(new int[] {
|
|
|
+ 1024,
|
|
|
+ 0,
|
|
|
+ 0,
|
|
|
+ 0});
|
|
|
+ this.ReOpenSizeUnDown.Minimum = new decimal(new int[] {
|
|
|
+ 1,
|
|
|
+ 0,
|
|
|
+ 0,
|
|
|
+ 0});
|
|
|
+ this.ReOpenSizeUnDown.Name = "ReOpenSizeUnDown";
|
|
|
+ this.ReOpenSizeUnDown.Size = new System.Drawing.Size(47, 21);
|
|
|
+ this.ReOpenSizeUnDown.TabIndex = 2;
|
|
|
+ this.ReOpenSizeUnDown.Value = new decimal(new int[] {
|
|
|
+ 3,
|
|
|
+ 0,
|
|
|
+ 0,
|
|
|
+ 0});
|
|
|
+ //
|
|
|
+ // ReOpenGbLabel
|
|
|
+ //
|
|
|
+ this.ReOpenGbLabel.Location = new System.Drawing.Point(385, 20);
|
|
|
+ this.ReOpenGbLabel.Name = "ReOpenGbLabel";
|
|
|
+ this.ReOpenGbLabel.Size = new System.Drawing.Size(22, 21);
|
|
|
+ this.ReOpenGbLabel.TabIndex = 1;
|
|
|
+ this.ReOpenGbLabel.Tag = "";
|
|
|
+ this.ReOpenGbLabel.Text = "GB";
|
|
|
+ this.ReOpenGbLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
|
|
+ //
|
|
|
+ // BufSizeUpDown
|
|
|
+ //
|
|
|
+ this.BufSizeUpDown.Location = new System.Drawing.Point(75, 20);
|
|
|
+ this.BufSizeUpDown.Maximum = new decimal(new int[] {
|
|
|
+ 1024,
|
|
|
+ 0,
|
|
|
+ 0,
|
|
|
+ 0});
|
|
|
+ this.BufSizeUpDown.Minimum = new decimal(new int[] {
|
|
|
+ 1,
|
|
|
+ 0,
|
|
|
+ 0,
|
|
|
+ 0});
|
|
|
+ this.BufSizeUpDown.Name = "BufSizeUpDown";
|
|
|
+ this.BufSizeUpDown.Size = new System.Drawing.Size(47, 21);
|
|
|
+ this.BufSizeUpDown.TabIndex = 0;
|
|
|
+ this.BufSizeUpDown.Value = new decimal(new int[] {
|
|
|
+ 512,
|
|
|
+ 0,
|
|
|
+ 0,
|
|
|
+ 0});
|
|
|
+ //
|
|
|
+ // ReOpenSizeLabel
|
|
|
+ //
|
|
|
+ this.ReOpenSizeLabel.Location = new System.Drawing.Point(254, 20);
|
|
|
+ this.ReOpenSizeLabel.Name = "ReOpenSizeLabel";
|
|
|
+ this.ReOpenSizeLabel.Size = new System.Drawing.Size(72, 21);
|
|
|
+ this.ReOpenSizeLabel.TabIndex = 1;
|
|
|
+ this.ReOpenSizeLabel.Tag = "";
|
|
|
+ this.ReOpenSizeLabel.Text = "ReOpen Size";
|
|
|
+ this.ReOpenSizeLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
|
|
+ //
|
|
|
+ // BufSizeMbLabel
|
|
|
+ //
|
|
|
+ this.BufSizeMbLabel.Location = new System.Drawing.Point(128, 20);
|
|
|
+ this.BufSizeMbLabel.Name = "BufSizeMbLabel";
|
|
|
+ this.BufSizeMbLabel.Size = new System.Drawing.Size(22, 21);
|
|
|
+ this.BufSizeMbLabel.TabIndex = 1;
|
|
|
+ this.BufSizeMbLabel.Tag = "";
|
|
|
+ this.BufSizeMbLabel.Text = "MB";
|
|
|
+ this.BufSizeMbLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
|
|
+ //
|
|
|
+ // BufSizeLabel
|
|
|
+ //
|
|
|
+ this.BufSizeLabel.Location = new System.Drawing.Point(14, 20);
|
|
|
+ this.BufSizeLabel.Name = "BufSizeLabel";
|
|
|
+ this.BufSizeLabel.Size = new System.Drawing.Size(55, 21);
|
|
|
+ this.BufSizeLabel.TabIndex = 1;
|
|
|
+ this.BufSizeLabel.Tag = "";
|
|
|
+ this.BufSizeLabel.Text = "Buf Size";
|
|
|
+ this.BufSizeLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
|
|
+ //
|
|
|
+ // UiUpdateTimer
|
|
|
+ //
|
|
|
+ this.UiUpdateTimer.Enabled = true;
|
|
|
+ this.UiUpdateTimer.Tick += new System.EventHandler(this.UiUpdateTimer_Tick);
|
|
|
+ //
|
|
|
+ // MainForm
|
|
|
+ //
|
|
|
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|
|
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
|
+ this.ClientSize = new System.Drawing.Size(561, 261);
|
|
|
+ this.Controls.Add(this.ConfigGroupBox);
|
|
|
+ this.Controls.Add(this.FireButton);
|
|
|
+ this.Controls.Add(this.ToTextBox);
|
|
|
+ this.Controls.Add(this.FromTextBox);
|
|
|
+ this.Controls.Add(this.CurrentOperationLabel);
|
|
|
+ this.Controls.Add(this.CurrentOpLabel);
|
|
|
+ this.Controls.Add(this.BufLabel);
|
|
|
+ this.Controls.Add(this.ReOpenLabel);
|
|
|
+ this.Controls.Add(this.Totallabel);
|
|
|
+ this.Controls.Add(this.ToLabel);
|
|
|
+ this.Controls.Add(this.FromLabel);
|
|
|
+ this.Controls.Add(this.BufProgressBar);
|
|
|
+ this.Controls.Add(this.ReOpenProgressBar);
|
|
|
+ this.Controls.Add(this.TotalProgressBar);
|
|
|
+ this.MaximizeBox = false;
|
|
|
+ this.MaximumSize = new System.Drawing.Size(99999, 300);
|
|
|
+ this.MinimumSize = new System.Drawing.Size(450, 300);
|
|
|
+ this.Name = "MainForm";
|
|
|
+ this.Text = "Strange File Copy";
|
|
|
+ this.ConfigGroupBox.ResumeLayout(false);
|
|
|
+ this.ConfigGroupBox.PerformLayout();
|
|
|
+ ((System.ComponentModel.ISupportInitialize)(this.ReOpenSizeUnDown)).EndInit();
|
|
|
+ ((System.ComponentModel.ISupportInitialize)(this.BufSizeUpDown)).EndInit();
|
|
|
+ this.ResumeLayout(false);
|
|
|
+ this.PerformLayout();
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ #endregion
|
|
|
+
|
|
|
+ private System.Windows.Forms.ProgressBar TotalProgressBar;
|
|
|
+ private System.Windows.Forms.ProgressBar ReOpenProgressBar;
|
|
|
+ private System.Windows.Forms.Label FromLabel;
|
|
|
+ private System.Windows.Forms.TextBox FromTextBox;
|
|
|
+ private System.Windows.Forms.TextBox ToTextBox;
|
|
|
+ private System.Windows.Forms.Label ToLabel;
|
|
|
+ private System.Windows.Forms.Button FireButton;
|
|
|
+ private System.Windows.Forms.Label Totallabel;
|
|
|
+ private System.Windows.Forms.Label ReOpenLabel;
|
|
|
+ private System.Windows.Forms.ProgressBar BufProgressBar;
|
|
|
+ private System.Windows.Forms.Label BufLabel;
|
|
|
+ private System.Windows.Forms.Label CurrentOpLabel;
|
|
|
+ private System.Windows.Forms.Label CurrentOperationLabel;
|
|
|
+ private System.Windows.Forms.GroupBox ConfigGroupBox;
|
|
|
+ private System.Windows.Forms.Label BufSizeLabel;
|
|
|
+ private System.Windows.Forms.NumericUpDown BufSizeUpDown;
|
|
|
+ private System.Windows.Forms.Label BufSizeMbLabel;
|
|
|
+ private System.Windows.Forms.CheckBox FlushCheckBox;
|
|
|
+ private System.Windows.Forms.NumericUpDown ReOpenSizeUnDown;
|
|
|
+ private System.Windows.Forms.Label ReOpenGbLabel;
|
|
|
+ private System.Windows.Forms.Label ReOpenSizeLabel;
|
|
|
+ private System.Windows.Forms.Timer UiUpdateTimer;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|