MainForm.Designer.cs 18 KB

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