MainForm.Designer.cs 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563
  1. namespace LYFZ.DiscBurner
  2. {
  3. partial class MainForm
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, 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 Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
  30. this.devicesComboBox = new System.Windows.Forms.ComboBox();
  31. this.label1 = new System.Windows.Forms.Label();
  32. this.supportedMediaLabel = new System.Windows.Forms.Label();
  33. this.backgroundBurnWorker = new System.ComponentModel.BackgroundWorker();
  34. this.folderBrowserDialog = new System.Windows.Forms.FolderBrowserDialog();
  35. this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
  36. this.labeltotalMediaSize = new System.Windows.Forms.Label();
  37. this.labelTotalSize = new System.Windows.Forms.Label();
  38. this.progressBarCapacity = new System.Windows.Forms.ProgressBar();
  39. this.buttonFormat = new System.Windows.Forms.Button();
  40. this.tabControl1 = new System.Windows.Forms.TabControl();
  41. this.tabPageBurn = new System.Windows.Forms.TabPage();
  42. this.groupBox2 = new System.Windows.Forms.GroupBox();
  43. this.labelStatusText = new System.Windows.Forms.Label();
  44. this.statusProgressBar = new System.Windows.Forms.ProgressBar();
  45. this.labelMediaType = new System.Windows.Forms.Label();
  46. this.buttonDetectMedia = new System.Windows.Forms.Button();
  47. this.groupBox1 = new System.Windows.Forms.GroupBox();
  48. this.cbxSpeedList = new System.Windows.Forms.ComboBox();
  49. this.label4 = new System.Windows.Forms.Label();
  50. this.comboBoxVerification = new System.Windows.Forms.ComboBox();
  51. this.labelVerification = new System.Windows.Forms.Label();
  52. this.buttonBurn = new System.Windows.Forms.Button();
  53. this.checkBoxEject = new System.Windows.Forms.CheckBox();
  54. this.checkBoxCloseMedia = new System.Windows.Forms.CheckBox();
  55. this.textBoxLabel = new System.Windows.Forms.TextBox();
  56. this.label2 = new System.Windows.Forms.Label();
  57. this.buttonRemoveFiles = new System.Windows.Forms.Button();
  58. this.buttonAddFolders = new System.Windows.Forms.Button();
  59. this.buttonAddFiles = new System.Windows.Forms.Button();
  60. this.listBoxFiles = new System.Windows.Forms.ListBox();
  61. this.tabPageFormat = new System.Windows.Forms.TabPage();
  62. this.checkBoxQuickFormat = new System.Windows.Forms.CheckBox();
  63. this.checkBoxEjectFormat = new System.Windows.Forms.CheckBox();
  64. this.formatProgressBar = new System.Windows.Forms.ProgressBar();
  65. this.labelFormatStatusText = new System.Windows.Forms.Label();
  66. this.backgroundFormatWorker = new System.ComponentModel.BackgroundWorker();
  67. this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
  68. this.label3 = new System.Windows.Forms.Label();
  69. this.buttonEjectMedia = new System.Windows.Forms.Button();
  70. this.tabControl1.SuspendLayout();
  71. this.tabPageBurn.SuspendLayout();
  72. this.groupBox2.SuspendLayout();
  73. this.groupBox1.SuspendLayout();
  74. this.tabPageFormat.SuspendLayout();
  75. ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
  76. this.SuspendLayout();
  77. //
  78. // devicesComboBox
  79. //
  80. this.devicesComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  81. this.devicesComboBox.FormattingEnabled = true;
  82. this.devicesComboBox.Location = new System.Drawing.Point(36, 9);
  83. this.devicesComboBox.Name = "devicesComboBox";
  84. this.devicesComboBox.Size = new System.Drawing.Size(234, 20);
  85. this.devicesComboBox.TabIndex = 1;
  86. this.devicesComboBox.SelectedIndexChanged += new System.EventHandler(this.devicesComboBox_SelectedIndexChanged);
  87. this.devicesComboBox.Format += new System.Windows.Forms.ListControlConvertEventHandler(this.devicesComboBox_Format);
  88. //
  89. // label1
  90. //
  91. this.label1.AutoSize = true;
  92. this.label1.Location = new System.Drawing.Point(362, 12);
  93. this.label1.Name = "label1";
  94. this.label1.Size = new System.Drawing.Size(59, 12);
  95. this.label1.TabIndex = 2;
  96. this.label1.Text = "支持媒体:";
  97. //
  98. // supportedMediaLabel
  99. //
  100. this.supportedMediaLabel.Location = new System.Drawing.Point(421, 12);
  101. this.supportedMediaLabel.Name = "supportedMediaLabel";
  102. this.supportedMediaLabel.Size = new System.Drawing.Size(411, 49);
  103. this.supportedMediaLabel.TabIndex = 3;
  104. //
  105. // backgroundBurnWorker
  106. //
  107. this.backgroundBurnWorker.WorkerReportsProgress = true;
  108. this.backgroundBurnWorker.WorkerSupportsCancellation = true;
  109. this.backgroundBurnWorker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundBurnWorker_DoWork);
  110. this.backgroundBurnWorker.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.backgroundBurnWorker_ProgressChanged);
  111. this.backgroundBurnWorker.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.backgroundBurnWorker_RunWorkerCompleted);
  112. //
  113. // openFileDialog
  114. //
  115. this.openFileDialog.Filter = "All Files (*.*)|*.*";
  116. //
  117. // labeltotalMediaSize
  118. //
  119. this.labeltotalMediaSize.AutoSize = true;
  120. this.labeltotalMediaSize.Location = new System.Drawing.Point(10, 204);
  121. this.labeltotalMediaSize.Name = "labeltotalMediaSize";
  122. this.labeltotalMediaSize.Size = new System.Drawing.Size(77, 12);
  123. this.labeltotalMediaSize.TabIndex = 6;
  124. this.labeltotalMediaSize.Text = "文件大小 0MB";
  125. //
  126. // labelTotalSize
  127. //
  128. this.labelTotalSize.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  129. this.labelTotalSize.Location = new System.Drawing.Point(605, 205);
  130. this.labelTotalSize.Name = "labelTotalSize";
  131. this.labelTotalSize.Size = new System.Drawing.Size(186, 12);
  132. this.labelTotalSize.TabIndex = 7;
  133. this.labelTotalSize.Text = "光盘容量 0MB";
  134. this.labelTotalSize.TextAlign = System.Drawing.ContentAlignment.TopRight;
  135. //
  136. // progressBarCapacity
  137. //
  138. this.progressBarCapacity.BackColor = System.Drawing.Color.WhiteSmoke;
  139. this.progressBarCapacity.Cursor = System.Windows.Forms.Cursors.WaitCursor;
  140. this.errorProvider1.SetIconPadding(this.progressBarCapacity, 2);
  141. this.progressBarCapacity.Location = new System.Drawing.Point(8, 191);
  142. this.progressBarCapacity.Name = "progressBarCapacity";
  143. this.progressBarCapacity.Size = new System.Drawing.Size(783, 10);
  144. this.progressBarCapacity.Step = 1;
  145. this.progressBarCapacity.Style = System.Windows.Forms.ProgressBarStyle.Continuous;
  146. this.progressBarCapacity.TabIndex = 8;
  147. this.progressBarCapacity.UseWaitCursor = true;
  148. //
  149. // buttonFormat
  150. //
  151. this.buttonFormat.Location = new System.Drawing.Point(352, 97);
  152. this.buttonFormat.Name = "buttonFormat";
  153. this.buttonFormat.Size = new System.Drawing.Size(83, 27);
  154. this.buttonFormat.TabIndex = 10;
  155. this.buttonFormat.Text = "格式化光盘";
  156. this.buttonFormat.UseVisualStyleBackColor = true;
  157. this.buttonFormat.Click += new System.EventHandler(this.buttonFormat_Click);
  158. //
  159. // tabControl1
  160. //
  161. this.tabControl1.Controls.Add(this.tabPageBurn);
  162. this.tabControl1.Controls.Add(this.tabPageFormat);
  163. this.tabControl1.Location = new System.Drawing.Point(8, 54);
  164. this.tabControl1.Name = "tabControl1";
  165. this.tabControl1.SelectedIndex = 0;
  166. this.tabControl1.Size = new System.Drawing.Size(824, 496);
  167. this.tabControl1.TabIndex = 11;
  168. this.tabControl1.Selecting += new System.Windows.Forms.TabControlCancelEventHandler(this.tabControl1_Selecting);
  169. //
  170. // tabPageBurn
  171. //
  172. this.tabPageBurn.Controls.Add(this.groupBox2);
  173. this.tabPageBurn.Controls.Add(this.groupBox1);
  174. this.tabPageBurn.Location = new System.Drawing.Point(4, 22);
  175. this.tabPageBurn.Name = "tabPageBurn";
  176. this.tabPageBurn.Padding = new System.Windows.Forms.Padding(3);
  177. this.tabPageBurn.Size = new System.Drawing.Size(816, 470);
  178. this.tabPageBurn.TabIndex = 0;
  179. this.tabPageBurn.Text = "刻录";
  180. this.tabPageBurn.UseVisualStyleBackColor = true;
  181. //
  182. // groupBox2
  183. //
  184. this.groupBox2.Controls.Add(this.labelStatusText);
  185. this.groupBox2.Controls.Add(this.statusProgressBar);
  186. this.groupBox2.Controls.Add(this.labelMediaType);
  187. this.groupBox2.Controls.Add(this.buttonDetectMedia);
  188. this.groupBox2.Location = new System.Drawing.Point(10, 308);
  189. this.groupBox2.Name = "groupBox2";
  190. this.groupBox2.Size = new System.Drawing.Size(799, 156);
  191. this.groupBox2.TabIndex = 10;
  192. this.groupBox2.TabStop = false;
  193. this.groupBox2.Text = "所选的刻录设备:";
  194. //
  195. // labelStatusText
  196. //
  197. this.labelStatusText.Location = new System.Drawing.Point(8, 68);
  198. this.labelStatusText.Name = "labelStatusText";
  199. this.labelStatusText.Size = new System.Drawing.Size(783, 20);
  200. this.labelStatusText.TabIndex = 7;
  201. this.labelStatusText.Text = "状态...";
  202. this.labelStatusText.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
  203. //
  204. // statusProgressBar
  205. //
  206. this.statusProgressBar.BackColor = System.Drawing.Color.WhiteSmoke;
  207. this.statusProgressBar.Location = new System.Drawing.Point(6, 94);
  208. this.statusProgressBar.Name = "statusProgressBar";
  209. this.statusProgressBar.Size = new System.Drawing.Size(785, 32);
  210. this.statusProgressBar.TabIndex = 8;
  211. //
  212. // labelMediaType
  213. //
  214. this.labelMediaType.Location = new System.Drawing.Point(117, 20);
  215. this.labelMediaType.Name = "labelMediaType";
  216. this.labelMediaType.Size = new System.Drawing.Size(512, 37);
  217. this.labelMediaType.TabIndex = 10;
  218. this.labelMediaType.Text = "请按“检测刻录设备”按钮,检查设备是否能正常刻录";
  219. //
  220. // buttonDetectMedia
  221. //
  222. this.buttonDetectMedia.Location = new System.Drawing.Point(12, 18);
  223. this.buttonDetectMedia.Name = "buttonDetectMedia";
  224. this.buttonDetectMedia.Size = new System.Drawing.Size(98, 26);
  225. this.buttonDetectMedia.TabIndex = 9;
  226. this.buttonDetectMedia.Text = "检测刻录设备";
  227. this.buttonDetectMedia.UseVisualStyleBackColor = true;
  228. this.buttonDetectMedia.Click += new System.EventHandler(this.buttonDetectMedia_Click);
  229. //
  230. // groupBox1
  231. //
  232. this.groupBox1.Controls.Add(this.cbxSpeedList);
  233. this.groupBox1.Controls.Add(this.label4);
  234. this.groupBox1.Controls.Add(this.comboBoxVerification);
  235. this.groupBox1.Controls.Add(this.labelVerification);
  236. this.groupBox1.Controls.Add(this.buttonBurn);
  237. this.groupBox1.Controls.Add(this.checkBoxEject);
  238. this.groupBox1.Controls.Add(this.labeltotalMediaSize);
  239. this.groupBox1.Controls.Add(this.checkBoxCloseMedia);
  240. this.groupBox1.Controls.Add(this.labelTotalSize);
  241. this.groupBox1.Controls.Add(this.textBoxLabel);
  242. this.groupBox1.Controls.Add(this.progressBarCapacity);
  243. this.groupBox1.Controls.Add(this.label2);
  244. this.groupBox1.Controls.Add(this.buttonRemoveFiles);
  245. this.groupBox1.Controls.Add(this.buttonAddFolders);
  246. this.groupBox1.Controls.Add(this.buttonAddFiles);
  247. this.groupBox1.Controls.Add(this.listBoxFiles);
  248. this.groupBox1.Location = new System.Drawing.Point(10, 6);
  249. this.groupBox1.Name = "groupBox1";
  250. this.groupBox1.Size = new System.Drawing.Size(799, 296);
  251. this.groupBox1.TabIndex = 7;
  252. this.groupBox1.TabStop = false;
  253. this.groupBox1.Text = "要刻录的文件";
  254. //
  255. // cbxSpeedList
  256. //
  257. this.cbxSpeedList.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  258. this.cbxSpeedList.FormattingEnabled = true;
  259. this.cbxSpeedList.Items.AddRange(new object[] {
  260. "高速",
  261. "正常",
  262. "低速"});
  263. this.cbxSpeedList.Location = new System.Drawing.Point(489, 228);
  264. this.cbxSpeedList.Name = "cbxSpeedList";
  265. this.cbxSpeedList.Size = new System.Drawing.Size(96, 20);
  266. this.cbxSpeedList.TabIndex = 9;
  267. this.cbxSpeedList.SelectedIndexChanged += new System.EventHandler(this.cbxSpeedList_SelectedIndexChanged);
  268. //
  269. // label4
  270. //
  271. this.label4.AutoSize = true;
  272. this.label4.Location = new System.Drawing.Point(426, 232);
  273. this.label4.Name = "label4";
  274. this.label4.Size = new System.Drawing.Size(59, 12);
  275. this.label4.TabIndex = 8;
  276. this.label4.Text = "写入速度:";
  277. //
  278. // comboBoxVerification
  279. //
  280. this.comboBoxVerification.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  281. this.comboBoxVerification.FormattingEnabled = true;
  282. this.comboBoxVerification.Items.AddRange(new object[] {
  283. "无 ",
  284. "快速 ",
  285. "完全"});
  286. this.comboBoxVerification.Location = new System.Drawing.Point(636, 228);
  287. this.comboBoxVerification.Name = "comboBoxVerification";
  288. this.comboBoxVerification.Size = new System.Drawing.Size(72, 20);
  289. this.comboBoxVerification.TabIndex = 9;
  290. this.comboBoxVerification.SelectedIndexChanged += new System.EventHandler(this.comboBoxVerification_SelectedIndexChanged);
  291. //
  292. // labelVerification
  293. //
  294. this.labelVerification.AutoSize = true;
  295. this.labelVerification.Location = new System.Drawing.Point(597, 232);
  296. this.labelVerification.Name = "labelVerification";
  297. this.labelVerification.Size = new System.Drawing.Size(35, 12);
  298. this.labelVerification.TabIndex = 8;
  299. this.labelVerification.Text = "验证:";
  300. //
  301. // buttonBurn
  302. //
  303. this.buttonBurn.Enabled = false;
  304. this.errorProvider1.SetIconAlignment(this.buttonBurn, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
  305. this.buttonBurn.Location = new System.Drawing.Point(714, 228);
  306. this.buttonBurn.Name = "buttonBurn";
  307. this.buttonBurn.Size = new System.Drawing.Size(77, 55);
  308. this.buttonBurn.TabIndex = 6;
  309. this.buttonBurn.Text = "刻 录";
  310. this.buttonBurn.UseVisualStyleBackColor = true;
  311. this.buttonBurn.Click += new System.EventHandler(this.buttonBurn_Click);
  312. //
  313. // checkBoxEject
  314. //
  315. this.checkBoxEject.AutoSize = true;
  316. this.checkBoxEject.Checked = true;
  317. this.checkBoxEject.CheckState = System.Windows.Forms.CheckState.Checked;
  318. this.checkBoxEject.Location = new System.Drawing.Point(328, 230);
  319. this.checkBoxEject.Name = "checkBoxEject";
  320. this.checkBoxEject.Size = new System.Drawing.Size(84, 16);
  321. this.checkBoxEject.TabIndex = 7;
  322. this.checkBoxEject.Text = "完成后弹出";
  323. this.checkBoxEject.UseVisualStyleBackColor = true;
  324. //
  325. // checkBoxCloseMedia
  326. //
  327. this.checkBoxCloseMedia.AutoSize = true;
  328. this.checkBoxCloseMedia.Checked = true;
  329. this.checkBoxCloseMedia.CheckState = System.Windows.Forms.CheckState.Checked;
  330. this.checkBoxCloseMedia.Location = new System.Drawing.Point(227, 230);
  331. this.checkBoxCloseMedia.Name = "checkBoxCloseMedia";
  332. this.checkBoxCloseMedia.Size = new System.Drawing.Size(96, 16);
  333. this.checkBoxCloseMedia.TabIndex = 6;
  334. this.checkBoxCloseMedia.Text = "禁止追加刻录";
  335. this.checkBoxCloseMedia.UseVisualStyleBackColor = true;
  336. //
  337. // textBoxLabel
  338. //
  339. this.textBoxLabel.Location = new System.Drawing.Point(54, 262);
  340. this.textBoxLabel.Name = "textBoxLabel";
  341. this.textBoxLabel.Size = new System.Drawing.Size(657, 21);
  342. this.textBoxLabel.TabIndex = 5;
  343. //
  344. // label2
  345. //
  346. this.label2.AutoSize = true;
  347. this.label2.Location = new System.Drawing.Point(16, 265);
  348. this.label2.Name = "label2";
  349. this.label2.Size = new System.Drawing.Size(35, 12);
  350. this.label2.TabIndex = 4;
  351. this.label2.Text = "卷标:";
  352. //
  353. // buttonRemoveFiles
  354. //
  355. this.buttonRemoveFiles.Location = new System.Drawing.Point(153, 225);
  356. this.buttonRemoveFiles.Name = "buttonRemoveFiles";
  357. this.buttonRemoveFiles.Size = new System.Drawing.Size(65, 25);
  358. this.buttonRemoveFiles.TabIndex = 3;
  359. this.buttonRemoveFiles.Text = "删除";
  360. this.buttonRemoveFiles.UseVisualStyleBackColor = true;
  361. this.buttonRemoveFiles.Click += new System.EventHandler(this.buttonRemoveFiles_Click);
  362. //
  363. // buttonAddFolders
  364. //
  365. this.buttonAddFolders.Location = new System.Drawing.Point(81, 225);
  366. this.buttonAddFolders.Name = "buttonAddFolders";
  367. this.buttonAddFolders.Size = new System.Drawing.Size(65, 25);
  368. this.buttonAddFolders.TabIndex = 2;
  369. this.buttonAddFolders.Text = "添加目录";
  370. this.buttonAddFolders.UseVisualStyleBackColor = true;
  371. this.buttonAddFolders.Click += new System.EventHandler(this.buttonAddFolders_Click);
  372. //
  373. // buttonAddFiles
  374. //
  375. this.buttonAddFiles.Location = new System.Drawing.Point(10, 225);
  376. this.buttonAddFiles.Name = "buttonAddFiles";
  377. this.buttonAddFiles.Size = new System.Drawing.Size(65, 25);
  378. this.buttonAddFiles.TabIndex = 1;
  379. this.buttonAddFiles.Text = "添加文件";
  380. this.buttonAddFiles.UseVisualStyleBackColor = true;
  381. this.buttonAddFiles.Click += new System.EventHandler(this.buttonAddFiles_Click);
  382. //
  383. // listBoxFiles
  384. //
  385. this.listBoxFiles.BackColor = System.Drawing.Color.White;
  386. this.listBoxFiles.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
  387. this.listBoxFiles.FormattingEnabled = true;
  388. this.listBoxFiles.ItemHeight = 24;
  389. this.listBoxFiles.Location = new System.Drawing.Point(8, 18);
  390. this.listBoxFiles.Name = "listBoxFiles";
  391. this.listBoxFiles.Size = new System.Drawing.Size(783, 172);
  392. this.listBoxFiles.TabIndex = 0;
  393. this.listBoxFiles.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.listBoxFiles_DrawItem);
  394. this.listBoxFiles.SelectedIndexChanged += new System.EventHandler(this.listBoxFiles_SelectedIndexChanged);
  395. //
  396. // tabPageFormat
  397. //
  398. this.tabPageFormat.Controls.Add(this.checkBoxQuickFormat);
  399. this.tabPageFormat.Controls.Add(this.checkBoxEjectFormat);
  400. this.tabPageFormat.Controls.Add(this.formatProgressBar);
  401. this.tabPageFormat.Controls.Add(this.labelFormatStatusText);
  402. this.tabPageFormat.Controls.Add(this.buttonFormat);
  403. this.tabPageFormat.Location = new System.Drawing.Point(4, 22);
  404. this.tabPageFormat.Name = "tabPageFormat";
  405. this.tabPageFormat.Padding = new System.Windows.Forms.Padding(3);
  406. this.tabPageFormat.Size = new System.Drawing.Size(816, 470);
  407. this.tabPageFormat.TabIndex = 1;
  408. this.tabPageFormat.Text = "光盘擦除";
  409. this.tabPageFormat.UseVisualStyleBackColor = true;
  410. //
  411. // checkBoxQuickFormat
  412. //
  413. this.checkBoxQuickFormat.AutoSize = true;
  414. this.checkBoxQuickFormat.Checked = true;
  415. this.checkBoxQuickFormat.CheckState = System.Windows.Forms.CheckState.Checked;
  416. this.checkBoxQuickFormat.Location = new System.Drawing.Point(351, 48);
  417. this.checkBoxQuickFormat.Name = "checkBoxQuickFormat";
  418. this.checkBoxQuickFormat.Size = new System.Drawing.Size(84, 16);
  419. this.checkBoxQuickFormat.TabIndex = 14;
  420. this.checkBoxQuickFormat.Text = "快速格式化";
  421. this.checkBoxQuickFormat.UseVisualStyleBackColor = true;
  422. //
  423. // checkBoxEjectFormat
  424. //
  425. this.checkBoxEjectFormat.AutoSize = true;
  426. this.checkBoxEjectFormat.Checked = true;
  427. this.checkBoxEjectFormat.CheckState = System.Windows.Forms.CheckState.Checked;
  428. this.checkBoxEjectFormat.Location = new System.Drawing.Point(351, 26);
  429. this.checkBoxEjectFormat.Name = "checkBoxEjectFormat";
  430. this.checkBoxEjectFormat.Size = new System.Drawing.Size(84, 16);
  431. this.checkBoxEjectFormat.TabIndex = 12;
  432. this.checkBoxEjectFormat.Text = "完成后弹出";
  433. this.checkBoxEjectFormat.UseVisualStyleBackColor = true;
  434. //
  435. // formatProgressBar
  436. //
  437. this.formatProgressBar.BackColor = System.Drawing.Color.WhiteSmoke;
  438. this.formatProgressBar.Location = new System.Drawing.Point(28, 205);
  439. this.formatProgressBar.Name = "formatProgressBar";
  440. this.formatProgressBar.Size = new System.Drawing.Size(749, 20);
  441. this.formatProgressBar.TabIndex = 13;
  442. //
  443. // labelFormatStatusText
  444. //
  445. this.labelFormatStatusText.Location = new System.Drawing.Point(28, 148);
  446. this.labelFormatStatusText.Name = "labelFormatStatusText";
  447. this.labelFormatStatusText.Size = new System.Drawing.Size(749, 51);
  448. this.labelFormatStatusText.TabIndex = 11;
  449. this.labelFormatStatusText.Text = "状态...";
  450. this.labelFormatStatusText.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
  451. //
  452. // backgroundFormatWorker
  453. //
  454. this.backgroundFormatWorker.WorkerReportsProgress = true;
  455. this.backgroundFormatWorker.WorkerSupportsCancellation = true;
  456. this.backgroundFormatWorker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundFormatWorker_DoWork);
  457. this.backgroundFormatWorker.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.backgroundFormatWorker_ProgressChanged);
  458. this.backgroundFormatWorker.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.backgroundFormatWorker_RunWorkerCompleted);
  459. //
  460. // errorProvider1
  461. //
  462. this.errorProvider1.ContainerControl = this;
  463. //
  464. // label3
  465. //
  466. this.label3.AutoSize = true;
  467. this.label3.Location = new System.Drawing.Point(6, 12);
  468. this.label3.Name = "label3";
  469. this.label3.Size = new System.Drawing.Size(29, 12);
  470. this.label3.TabIndex = 2;
  471. this.label3.Text = "设备";
  472. //
  473. // buttonEjectMedia
  474. //
  475. this.buttonEjectMedia.Location = new System.Drawing.Point(274, 7);
  476. this.buttonEjectMedia.Name = "buttonEjectMedia";
  477. this.buttonEjectMedia.Size = new System.Drawing.Size(65, 23);
  478. this.buttonEjectMedia.TabIndex = 3;
  479. this.buttonEjectMedia.Text = "弹出";
  480. this.buttonEjectMedia.UseVisualStyleBackColor = true;
  481. this.buttonEjectMedia.Click += new System.EventHandler(this.buttonEjectMedia_Click);
  482. //
  483. // MainForm
  484. //
  485. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  486. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  487. this.ClientSize = new System.Drawing.Size(844, 561);
  488. this.Controls.Add(this.devicesComboBox);
  489. this.Controls.Add(this.tabControl1);
  490. this.Controls.Add(this.supportedMediaLabel);
  491. this.Controls.Add(this.label3);
  492. this.Controls.Add(this.label1);
  493. this.Controls.Add(this.buttonEjectMedia);
  494. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  495. this.MaximizeBox = false;
  496. this.MaximumSize = new System.Drawing.Size(860, 600);
  497. this.MinimumSize = new System.Drawing.Size(860, 600);
  498. this.Name = "MainForm";
  499. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  500. this.Text = "CD/DVD光盘刻录精灵—利亚方舟 V18.11.17";
  501. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
  502. this.Load += new System.EventHandler(this.MainForm_Load);
  503. this.tabControl1.ResumeLayout(false);
  504. this.tabPageBurn.ResumeLayout(false);
  505. this.groupBox2.ResumeLayout(false);
  506. this.groupBox1.ResumeLayout(false);
  507. this.groupBox1.PerformLayout();
  508. this.tabPageFormat.ResumeLayout(false);
  509. this.tabPageFormat.PerformLayout();
  510. ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
  511. this.ResumeLayout(false);
  512. this.PerformLayout();
  513. }
  514. #endregion
  515. private System.Windows.Forms.ComboBox devicesComboBox;
  516. private System.Windows.Forms.Label label1;
  517. private System.Windows.Forms.Label supportedMediaLabel;
  518. private System.ComponentModel.BackgroundWorker backgroundBurnWorker;
  519. private System.Windows.Forms.FolderBrowserDialog folderBrowserDialog;
  520. private System.Windows.Forms.OpenFileDialog openFileDialog;
  521. private System.Windows.Forms.Label labeltotalMediaSize;
  522. private System.Windows.Forms.Label labelTotalSize;
  523. private System.Windows.Forms.ProgressBar progressBarCapacity;
  524. private System.Windows.Forms.Button buttonFormat;
  525. private System.Windows.Forms.TabControl tabControl1;
  526. private System.Windows.Forms.TabPage tabPageBurn;
  527. private System.Windows.Forms.GroupBox groupBox1;
  528. private System.Windows.Forms.CheckBox checkBoxEject;
  529. private System.Windows.Forms.CheckBox checkBoxCloseMedia;
  530. private System.Windows.Forms.TextBox textBoxLabel;
  531. private System.Windows.Forms.Label label2;
  532. private System.Windows.Forms.Button buttonRemoveFiles;
  533. private System.Windows.Forms.Button buttonAddFolders;
  534. private System.Windows.Forms.Button buttonAddFiles;
  535. private System.Windows.Forms.ListBox listBoxFiles;
  536. private System.Windows.Forms.Button buttonBurn;
  537. private System.Windows.Forms.TabPage tabPageFormat;
  538. private System.ComponentModel.BackgroundWorker backgroundFormatWorker;
  539. private System.Windows.Forms.GroupBox groupBox2;
  540. private System.Windows.Forms.Label labelStatusText;
  541. private System.Windows.Forms.ProgressBar statusProgressBar;
  542. private System.Windows.Forms.CheckBox checkBoxEjectFormat;
  543. private System.Windows.Forms.ProgressBar formatProgressBar;
  544. private System.Windows.Forms.Label labelFormatStatusText;
  545. private System.Windows.Forms.CheckBox checkBoxQuickFormat;
  546. private System.Windows.Forms.Label labelMediaType;
  547. private System.Windows.Forms.Button buttonDetectMedia;
  548. private System.Windows.Forms.ComboBox comboBoxVerification;
  549. private System.Windows.Forms.Label labelVerification;
  550. private System.Windows.Forms.ErrorProvider errorProvider1;
  551. private System.Windows.Forms.Label label3;
  552. private System.Windows.Forms.Button buttonEjectMedia;
  553. private System.Windows.Forms.ComboBox cbxSpeedList;
  554. private System.Windows.Forms.Label label4;
  555. }
  556. }