MainForm.Designer.cs 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394
  1. namespace StrangeFileCopy
  2. {
  3. partial class MainForm
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 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 窗体设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. this.TotalProgressBar = new System.Windows.Forms.ProgressBar();
  30. this.ReOpenProgressBar = new System.Windows.Forms.ProgressBar();
  31. this.FromLabel = new System.Windows.Forms.Label();
  32. this.FromTextBox = new System.Windows.Forms.TextBox();
  33. this.ToTextBox = new System.Windows.Forms.TextBox();
  34. this.ToLabel = new System.Windows.Forms.Label();
  35. this.FireButton = new System.Windows.Forms.Button();
  36. this.Totallabel = new System.Windows.Forms.Label();
  37. this.ReOpenLabel = new System.Windows.Forms.Label();
  38. this.BufProgressBar = new System.Windows.Forms.ProgressBar();
  39. this.BufLabel = new System.Windows.Forms.Label();
  40. this.CurrentOpLabel = new System.Windows.Forms.Label();
  41. this.CurrentOperationLabel = new System.Windows.Forms.Label();
  42. this.ConfigGroupBox = new System.Windows.Forms.GroupBox();
  43. this.MaxCheckBox = new System.Windows.Forms.CheckBox();
  44. this.FlushCheckBox = new System.Windows.Forms.CheckBox();
  45. this.ReOpenSizeUnDown = new System.Windows.Forms.NumericUpDown();
  46. this.ReOpenGbLabel = new System.Windows.Forms.Label();
  47. this.BufSizeUpDown = new System.Windows.Forms.NumericUpDown();
  48. this.ReOpenSizeLabel = new System.Windows.Forms.Label();
  49. this.BufSizeMbLabel = new System.Windows.Forms.Label();
  50. this.BufSizeLabel = new System.Windows.Forms.Label();
  51. this.UiUpdateTimer = new System.Windows.Forms.Timer(this.components);
  52. this.PauseCheckBox = new System.Windows.Forms.CheckBox();
  53. this.ConfigGroupBox.SuspendLayout();
  54. ((System.ComponentModel.ISupportInitialize)(this.ReOpenSizeUnDown)).BeginInit();
  55. ((System.ComponentModel.ISupportInitialize)(this.BufSizeUpDown)).BeginInit();
  56. this.SuspendLayout();
  57. //
  58. // TotalProgressBar
  59. //
  60. this.TotalProgressBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  61. | System.Windows.Forms.AnchorStyles.Right)));
  62. this.TotalProgressBar.Location = new System.Drawing.Point(75, 221);
  63. this.TotalProgressBar.Name = "TotalProgressBar";
  64. this.TotalProgressBar.Size = new System.Drawing.Size(497, 23);
  65. this.TotalProgressBar.TabIndex = 0;
  66. //
  67. // ReOpenProgressBar
  68. //
  69. this.ReOpenProgressBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  70. | System.Windows.Forms.AnchorStyles.Right)));
  71. this.ReOpenProgressBar.Location = new System.Drawing.Point(75, 192);
  72. this.ReOpenProgressBar.Name = "ReOpenProgressBar";
  73. this.ReOpenProgressBar.Size = new System.Drawing.Size(497, 23);
  74. this.ReOpenProgressBar.TabIndex = 0;
  75. //
  76. // FromLabel
  77. //
  78. this.FromLabel.Location = new System.Drawing.Point(10, 80);
  79. this.FromLabel.Name = "FromLabel";
  80. this.FromLabel.Size = new System.Drawing.Size(59, 18);
  81. this.FromLabel.TabIndex = 1;
  82. this.FromLabel.Text = "File From";
  83. //
  84. // FromTextBox
  85. //
  86. this.FromTextBox.AllowDrop = true;
  87. this.FromTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  88. | System.Windows.Forms.AnchorStyles.Right)));
  89. this.FromTextBox.Location = new System.Drawing.Point(75, 77);
  90. this.FromTextBox.Name = "FromTextBox";
  91. this.FromTextBox.ReadOnly = true;
  92. this.FromTextBox.Size = new System.Drawing.Size(416, 21);
  93. this.FromTextBox.TabIndex = 0;
  94. this.FromTextBox.DragDrop += new System.Windows.Forms.DragEventHandler(this.FromTextBox_DragDrop);
  95. this.FromTextBox.DragEnter += new System.Windows.Forms.DragEventHandler(this.FromTextBox_DragEnter);
  96. //
  97. // ToTextBox
  98. //
  99. this.ToTextBox.AllowDrop = true;
  100. this.ToTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  101. | System.Windows.Forms.AnchorStyles.Right)));
  102. this.ToTextBox.Location = new System.Drawing.Point(75, 104);
  103. this.ToTextBox.Name = "ToTextBox";
  104. this.ToTextBox.ReadOnly = true;
  105. this.ToTextBox.Size = new System.Drawing.Size(416, 21);
  106. this.ToTextBox.TabIndex = 1;
  107. this.ToTextBox.DragDrop += new System.Windows.Forms.DragEventHandler(this.ToTextBox_DragDrop);
  108. this.ToTextBox.DragEnter += new System.Windows.Forms.DragEventHandler(this.ToTextBox_DragEnter);
  109. //
  110. // ToLabel
  111. //
  112. this.ToLabel.Location = new System.Drawing.Point(10, 107);
  113. this.ToLabel.Name = "ToLabel";
  114. this.ToLabel.Size = new System.Drawing.Size(59, 18);
  115. this.ToLabel.TabIndex = 1;
  116. this.ToLabel.Text = "To Folder";
  117. //
  118. // FireButton
  119. //
  120. this.FireButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  121. this.FireButton.Location = new System.Drawing.Point(497, 77);
  122. this.FireButton.Name = "FireButton";
  123. this.FireButton.Size = new System.Drawing.Size(75, 48);
  124. this.FireButton.TabIndex = 2;
  125. this.FireButton.Text = "Fire!";
  126. this.FireButton.UseVisualStyleBackColor = true;
  127. this.FireButton.Click += new System.EventHandler(this.FireButton_Click);
  128. //
  129. // Totallabel
  130. //
  131. this.Totallabel.Location = new System.Drawing.Point(10, 221);
  132. this.Totallabel.Name = "Totallabel";
  133. this.Totallabel.Size = new System.Drawing.Size(41, 23);
  134. this.Totallabel.TabIndex = 1;
  135. this.Totallabel.Text = "Total";
  136. this.Totallabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  137. //
  138. // ReOpenLabel
  139. //
  140. this.ReOpenLabel.Location = new System.Drawing.Point(10, 192);
  141. this.ReOpenLabel.Name = "ReOpenLabel";
  142. this.ReOpenLabel.Size = new System.Drawing.Size(41, 23);
  143. this.ReOpenLabel.TabIndex = 1;
  144. this.ReOpenLabel.Text = "ReOpen";
  145. this.ReOpenLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  146. //
  147. // BufProgressBar
  148. //
  149. this.BufProgressBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  150. | System.Windows.Forms.AnchorStyles.Right)));
  151. this.BufProgressBar.Location = new System.Drawing.Point(75, 163);
  152. this.BufProgressBar.Name = "BufProgressBar";
  153. this.BufProgressBar.Size = new System.Drawing.Size(497, 23);
  154. this.BufProgressBar.TabIndex = 0;
  155. //
  156. // BufLabel
  157. //
  158. this.BufLabel.Location = new System.Drawing.Point(12, 163);
  159. this.BufLabel.Name = "BufLabel";
  160. this.BufLabel.Size = new System.Drawing.Size(39, 23);
  161. this.BufLabel.TabIndex = 1;
  162. this.BufLabel.Text = "Buf";
  163. this.BufLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  164. //
  165. // CurrentOpLabel
  166. //
  167. this.CurrentOpLabel.AutoSize = true;
  168. this.CurrentOpLabel.Location = new System.Drawing.Point(10, 138);
  169. this.CurrentOpLabel.Name = "CurrentOpLabel";
  170. this.CurrentOpLabel.Size = new System.Drawing.Size(47, 12);
  171. this.CurrentOpLabel.TabIndex = 1;
  172. this.CurrentOpLabel.Text = "Status:";
  173. //
  174. // CurrentOperationLabel
  175. //
  176. this.CurrentOperationLabel.AutoSize = true;
  177. this.CurrentOperationLabel.Location = new System.Drawing.Point(87, 138);
  178. this.CurrentOperationLabel.Name = "CurrentOperationLabel";
  179. this.CurrentOperationLabel.Size = new System.Drawing.Size(35, 12);
  180. this.CurrentOperationLabel.TabIndex = 1;
  181. this.CurrentOperationLabel.Text = "RWFCO";
  182. //
  183. // ConfigGroupBox
  184. //
  185. this.ConfigGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  186. | System.Windows.Forms.AnchorStyles.Right)));
  187. this.ConfigGroupBox.Controls.Add(this.MaxCheckBox);
  188. this.ConfigGroupBox.Controls.Add(this.FlushCheckBox);
  189. this.ConfigGroupBox.Controls.Add(this.ReOpenSizeUnDown);
  190. this.ConfigGroupBox.Controls.Add(this.ReOpenGbLabel);
  191. this.ConfigGroupBox.Controls.Add(this.BufSizeUpDown);
  192. this.ConfigGroupBox.Controls.Add(this.ReOpenSizeLabel);
  193. this.ConfigGroupBox.Controls.Add(this.BufSizeMbLabel);
  194. this.ConfigGroupBox.Controls.Add(this.BufSizeLabel);
  195. this.ConfigGroupBox.Location = new System.Drawing.Point(12, 12);
  196. this.ConfigGroupBox.Name = "ConfigGroupBox";
  197. this.ConfigGroupBox.Size = new System.Drawing.Size(560, 59);
  198. this.ConfigGroupBox.TabIndex = 4;
  199. this.ConfigGroupBox.TabStop = false;
  200. this.ConfigGroupBox.Text = "Config";
  201. //
  202. // MaxCheckBox
  203. //
  204. this.MaxCheckBox.AutoSize = true;
  205. this.MaxCheckBox.Checked = true;
  206. this.MaxCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
  207. this.MaxCheckBox.Location = new System.Drawing.Point(156, 23);
  208. this.MaxCheckBox.Name = "MaxCheckBox";
  209. this.MaxCheckBox.Size = new System.Drawing.Size(84, 16);
  210. this.MaxCheckBox.TabIndex = 1;
  211. this.MaxCheckBox.Text = "Max 2G-56B";
  212. this.MaxCheckBox.UseVisualStyleBackColor = true;
  213. this.MaxCheckBox.CheckedChanged += new System.EventHandler(this.MaxCheckBox_CheckedChanged);
  214. //
  215. // FlushCheckBox
  216. //
  217. this.FlushCheckBox.AutoSize = true;
  218. this.FlushCheckBox.Checked = true;
  219. this.FlushCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
  220. this.FlushCheckBox.Location = new System.Drawing.Point(271, 23);
  221. this.FlushCheckBox.Name = "FlushCheckBox";
  222. this.FlushCheckBox.Size = new System.Drawing.Size(54, 16);
  223. this.FlushCheckBox.TabIndex = 1;
  224. this.FlushCheckBox.Text = "Flush";
  225. this.FlushCheckBox.UseVisualStyleBackColor = true;
  226. //
  227. // ReOpenSizeUnDown
  228. //
  229. this.ReOpenSizeUnDown.Location = new System.Drawing.Point(462, 20);
  230. this.ReOpenSizeUnDown.Maximum = new decimal(new int[] {
  231. 2047,
  232. 0,
  233. 0,
  234. 0});
  235. this.ReOpenSizeUnDown.Minimum = new decimal(new int[] {
  236. 1,
  237. 0,
  238. 0,
  239. 0});
  240. this.ReOpenSizeUnDown.Name = "ReOpenSizeUnDown";
  241. this.ReOpenSizeUnDown.Size = new System.Drawing.Size(47, 21);
  242. this.ReOpenSizeUnDown.TabIndex = 2;
  243. this.ReOpenSizeUnDown.Value = new decimal(new int[] {
  244. 3,
  245. 0,
  246. 0,
  247. 0});
  248. //
  249. // ReOpenGbLabel
  250. //
  251. this.ReOpenGbLabel.Location = new System.Drawing.Point(515, 20);
  252. this.ReOpenGbLabel.Name = "ReOpenGbLabel";
  253. this.ReOpenGbLabel.Size = new System.Drawing.Size(22, 21);
  254. this.ReOpenGbLabel.TabIndex = 1;
  255. this.ReOpenGbLabel.Tag = "";
  256. this.ReOpenGbLabel.Text = "GB";
  257. this.ReOpenGbLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  258. //
  259. // BufSizeUpDown
  260. //
  261. this.BufSizeUpDown.Enabled = false;
  262. this.BufSizeUpDown.Location = new System.Drawing.Point(75, 20);
  263. this.BufSizeUpDown.Maximum = new decimal(new int[] {
  264. 2046,
  265. 0,
  266. 0,
  267. 0});
  268. this.BufSizeUpDown.Minimum = new decimal(new int[] {
  269. 1,
  270. 0,
  271. 0,
  272. 0});
  273. this.BufSizeUpDown.Name = "BufSizeUpDown";
  274. this.BufSizeUpDown.Size = new System.Drawing.Size(47, 21);
  275. this.BufSizeUpDown.TabIndex = 0;
  276. this.BufSizeUpDown.Value = new decimal(new int[] {
  277. 512,
  278. 0,
  279. 0,
  280. 0});
  281. //
  282. // ReOpenSizeLabel
  283. //
  284. this.ReOpenSizeLabel.Location = new System.Drawing.Point(384, 20);
  285. this.ReOpenSizeLabel.Name = "ReOpenSizeLabel";
  286. this.ReOpenSizeLabel.Size = new System.Drawing.Size(72, 21);
  287. this.ReOpenSizeLabel.TabIndex = 1;
  288. this.ReOpenSizeLabel.Tag = "";
  289. this.ReOpenSizeLabel.Text = "ReOpen Size";
  290. this.ReOpenSizeLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  291. //
  292. // BufSizeMbLabel
  293. //
  294. this.BufSizeMbLabel.Location = new System.Drawing.Point(128, 20);
  295. this.BufSizeMbLabel.Name = "BufSizeMbLabel";
  296. this.BufSizeMbLabel.Size = new System.Drawing.Size(22, 21);
  297. this.BufSizeMbLabel.TabIndex = 1;
  298. this.BufSizeMbLabel.Tag = "";
  299. this.BufSizeMbLabel.Text = "MB";
  300. this.BufSizeMbLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  301. //
  302. // BufSizeLabel
  303. //
  304. this.BufSizeLabel.Location = new System.Drawing.Point(14, 20);
  305. this.BufSizeLabel.Name = "BufSizeLabel";
  306. this.BufSizeLabel.Size = new System.Drawing.Size(55, 21);
  307. this.BufSizeLabel.TabIndex = 1;
  308. this.BufSizeLabel.Tag = "";
  309. this.BufSizeLabel.Text = "Buf Size";
  310. this.BufSizeLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  311. //
  312. // UiUpdateTimer
  313. //
  314. this.UiUpdateTimer.Enabled = true;
  315. this.UiUpdateTimer.Tick += new System.EventHandler(this.UiUpdateTimer_Tick);
  316. //
  317. // PauseCheckBox
  318. //
  319. this.PauseCheckBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  320. this.PauseCheckBox.AutoSize = true;
  321. this.PauseCheckBox.Location = new System.Drawing.Point(507, 137);
  322. this.PauseCheckBox.Name = "PauseCheckBox";
  323. this.PauseCheckBox.Size = new System.Drawing.Size(54, 16);
  324. this.PauseCheckBox.TabIndex = 1;
  325. this.PauseCheckBox.Text = "Pause";
  326. this.PauseCheckBox.UseVisualStyleBackColor = true;
  327. this.PauseCheckBox.CheckedChanged += new System.EventHandler(this.PauseCheckBox_CheckedChanged);
  328. //
  329. // MainForm
  330. //
  331. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  332. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  333. this.ClientSize = new System.Drawing.Size(584, 261);
  334. this.Controls.Add(this.ConfigGroupBox);
  335. this.Controls.Add(this.PauseCheckBox);
  336. this.Controls.Add(this.FireButton);
  337. this.Controls.Add(this.ToTextBox);
  338. this.Controls.Add(this.FromTextBox);
  339. this.Controls.Add(this.CurrentOperationLabel);
  340. this.Controls.Add(this.CurrentOpLabel);
  341. this.Controls.Add(this.BufLabel);
  342. this.Controls.Add(this.ReOpenLabel);
  343. this.Controls.Add(this.Totallabel);
  344. this.Controls.Add(this.ToLabel);
  345. this.Controls.Add(this.FromLabel);
  346. this.Controls.Add(this.BufProgressBar);
  347. this.Controls.Add(this.ReOpenProgressBar);
  348. this.Controls.Add(this.TotalProgressBar);
  349. this.MaximizeBox = false;
  350. this.MaximumSize = new System.Drawing.Size(99999, 300);
  351. this.MinimumSize = new System.Drawing.Size(600, 300);
  352. this.Name = "MainForm";
  353. this.Text = "Strange File Copy";
  354. this.ConfigGroupBox.ResumeLayout(false);
  355. this.ConfigGroupBox.PerformLayout();
  356. ((System.ComponentModel.ISupportInitialize)(this.ReOpenSizeUnDown)).EndInit();
  357. ((System.ComponentModel.ISupportInitialize)(this.BufSizeUpDown)).EndInit();
  358. this.ResumeLayout(false);
  359. this.PerformLayout();
  360. }
  361. #endregion
  362. private System.Windows.Forms.ProgressBar TotalProgressBar;
  363. private System.Windows.Forms.ProgressBar ReOpenProgressBar;
  364. private System.Windows.Forms.Label FromLabel;
  365. private System.Windows.Forms.TextBox FromTextBox;
  366. private System.Windows.Forms.TextBox ToTextBox;
  367. private System.Windows.Forms.Label ToLabel;
  368. private System.Windows.Forms.Button FireButton;
  369. private System.Windows.Forms.Label Totallabel;
  370. private System.Windows.Forms.Label ReOpenLabel;
  371. private System.Windows.Forms.ProgressBar BufProgressBar;
  372. private System.Windows.Forms.Label BufLabel;
  373. private System.Windows.Forms.Label CurrentOpLabel;
  374. private System.Windows.Forms.Label CurrentOperationLabel;
  375. private System.Windows.Forms.GroupBox ConfigGroupBox;
  376. private System.Windows.Forms.Label BufSizeLabel;
  377. private System.Windows.Forms.NumericUpDown BufSizeUpDown;
  378. private System.Windows.Forms.Label BufSizeMbLabel;
  379. private System.Windows.Forms.CheckBox FlushCheckBox;
  380. private System.Windows.Forms.NumericUpDown ReOpenSizeUnDown;
  381. private System.Windows.Forms.Label ReOpenGbLabel;
  382. private System.Windows.Forms.Label ReOpenSizeLabel;
  383. private System.Windows.Forms.Timer UiUpdateTimer;
  384. private System.Windows.Forms.CheckBox MaxCheckBox;
  385. private System.Windows.Forms.CheckBox PauseCheckBox;
  386. }
  387. }