MainForm.Designer.cs 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501
  1. namespace BurnMedia
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
  29. this.devicesComboBox = new System.Windows.Forms.ComboBox();
  30. this.label1 = new System.Windows.Forms.Label();
  31. this.supportedMediaLabel = new System.Windows.Forms.Label();
  32. this.backgroundBurnWorker = new System.ComponentModel.BackgroundWorker();
  33. this.folderBrowserDialog = new System.Windows.Forms.FolderBrowserDialog();
  34. this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
  35. this.label3 = new System.Windows.Forms.Label();
  36. this.labelTotalSize = new System.Windows.Forms.Label();
  37. this.progressBarCapacity = new System.Windows.Forms.ProgressBar();
  38. this.buttonFormat = new System.Windows.Forms.Button();
  39. this.tabControl1 = new System.Windows.Forms.TabControl();
  40. this.tabPageBurn = new System.Windows.Forms.TabPage();
  41. this.groupBox3 = new System.Windows.Forms.GroupBox();
  42. this.statusProgressBar = new System.Windows.Forms.ProgressBar();
  43. this.labelStatusText = new System.Windows.Forms.Label();
  44. this.buttonBurn = new System.Windows.Forms.Button();
  45. this.groupBox2 = new System.Windows.Forms.GroupBox();
  46. this.labelMediaType = new System.Windows.Forms.Label();
  47. this.buttonDetectMedia = new System.Windows.Forms.Button();
  48. this.groupBox1 = new System.Windows.Forms.GroupBox();
  49. this.comboBoxVerification = new System.Windows.Forms.ComboBox();
  50. this.labelVerification = new System.Windows.Forms.Label();
  51. this.checkBoxEject = new System.Windows.Forms.CheckBox();
  52. this.checkBoxCloseMedia = new System.Windows.Forms.CheckBox();
  53. this.textBoxLabel = new System.Windows.Forms.TextBox();
  54. this.label2 = new System.Windows.Forms.Label();
  55. this.buttonRemoveFiles = new System.Windows.Forms.Button();
  56. this.buttonAddFolders = new System.Windows.Forms.Button();
  57. this.buttonAddFiles = new System.Windows.Forms.Button();
  58. this.listBoxFiles = new System.Windows.Forms.ListBox();
  59. this.tabPageFormat = new System.Windows.Forms.TabPage();
  60. this.checkBoxQuickFormat = new System.Windows.Forms.CheckBox();
  61. this.checkBoxEjectFormat = new System.Windows.Forms.CheckBox();
  62. this.formatProgressBar = new System.Windows.Forms.ProgressBar();
  63. this.labelFormatStatusText = new System.Windows.Forms.Label();
  64. this.backgroundFormatWorker = new System.ComponentModel.BackgroundWorker();
  65. this.tabControl1.SuspendLayout();
  66. this.tabPageBurn.SuspendLayout();
  67. this.groupBox3.SuspendLayout();
  68. this.groupBox2.SuspendLayout();
  69. this.groupBox1.SuspendLayout();
  70. this.tabPageFormat.SuspendLayout();
  71. this.SuspendLayout();
  72. //
  73. // devicesComboBox
  74. //
  75. this.devicesComboBox.FormattingEnabled = true;
  76. this.devicesComboBox.Location = new System.Drawing.Point(12, 12);
  77. this.devicesComboBox.Name = "devicesComboBox";
  78. this.devicesComboBox.Size = new System.Drawing.Size(196, 21);
  79. this.devicesComboBox.TabIndex = 1;
  80. this.devicesComboBox.SelectedIndexChanged += new System.EventHandler(this.devicesComboBox_SelectedIndexChanged);
  81. this.devicesComboBox.Format += new System.Windows.Forms.ListControlConvertEventHandler(this.devicesComboBox_Format);
  82. //
  83. // label1
  84. //
  85. this.label1.AutoSize = true;
  86. this.label1.Location = new System.Drawing.Point(267, 12);
  87. this.label1.Name = "label1";
  88. this.label1.Size = new System.Drawing.Size(91, 13);
  89. this.label1.TabIndex = 2;
  90. this.label1.Text = "Supported Media:";
  91. //
  92. // supportedMediaLabel
  93. //
  94. this.supportedMediaLabel.Location = new System.Drawing.Point(364, 9);
  95. this.supportedMediaLabel.Name = "supportedMediaLabel";
  96. this.supportedMediaLabel.Size = new System.Drawing.Size(262, 57);
  97. this.supportedMediaLabel.TabIndex = 3;
  98. //
  99. // backgroundBurnWorker
  100. //
  101. this.backgroundBurnWorker.WorkerReportsProgress = true;
  102. this.backgroundBurnWorker.WorkerSupportsCancellation = true;
  103. this.backgroundBurnWorker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundBurnWorker_DoWork);
  104. this.backgroundBurnWorker.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.backgroundBurnWorker_RunWorkerCompleted);
  105. this.backgroundBurnWorker.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.backgroundBurnWorker_ProgressChanged);
  106. //
  107. // openFileDialog
  108. //
  109. this.openFileDialog.Filter = "All Files (*.*)|*.*";
  110. //
  111. // label3
  112. //
  113. this.label3.AutoSize = true;
  114. this.label3.Location = new System.Drawing.Point(6, 73);
  115. this.label3.Name = "label3";
  116. this.label3.Size = new System.Drawing.Size(13, 13);
  117. this.label3.TabIndex = 6;
  118. this.label3.Text = "0";
  119. //
  120. // labelTotalSize
  121. //
  122. this.labelTotalSize.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  123. this.labelTotalSize.AutoSize = true;
  124. this.labelTotalSize.Location = new System.Drawing.Point(193, 73);
  125. this.labelTotalSize.Name = "labelTotalSize";
  126. this.labelTotalSize.Size = new System.Drawing.Size(47, 13);
  127. this.labelTotalSize.TabIndex = 7;
  128. this.labelTotalSize.Text = "totalSize";
  129. //
  130. // progressBarCapacity
  131. //
  132. this.progressBarCapacity.Location = new System.Drawing.Point(6, 92);
  133. this.progressBarCapacity.Name = "progressBarCapacity";
  134. this.progressBarCapacity.Size = new System.Drawing.Size(230, 12);
  135. this.progressBarCapacity.Step = 1;
  136. this.progressBarCapacity.Style = System.Windows.Forms.ProgressBarStyle.Continuous;
  137. this.progressBarCapacity.TabIndex = 8;
  138. //
  139. // buttonFormat
  140. //
  141. this.buttonFormat.Location = new System.Drawing.Point(244, 101);
  142. this.buttonFormat.Name = "buttonFormat";
  143. this.buttonFormat.Size = new System.Drawing.Size(83, 29);
  144. this.buttonFormat.TabIndex = 10;
  145. this.buttonFormat.Text = "&Format Disc";
  146. this.buttonFormat.UseVisualStyleBackColor = true;
  147. this.buttonFormat.Click += new System.EventHandler(this.buttonFormat_Click);
  148. //
  149. // tabControl1
  150. //
  151. this.tabControl1.Controls.Add(this.tabPageBurn);
  152. this.tabControl1.Controls.Add(this.tabPageFormat);
  153. this.tabControl1.Location = new System.Drawing.Point(12, 58);
  154. this.tabControl1.Name = "tabControl1";
  155. this.tabControl1.SelectedIndex = 0;
  156. this.tabControl1.Size = new System.Drawing.Size(618, 331);
  157. this.tabControl1.TabIndex = 11;
  158. this.tabControl1.Selecting += new System.Windows.Forms.TabControlCancelEventHandler(this.tabControl1_Selecting);
  159. //
  160. // tabPageBurn
  161. //
  162. this.tabPageBurn.Controls.Add(this.groupBox3);
  163. this.tabPageBurn.Controls.Add(this.groupBox2);
  164. this.tabPageBurn.Controls.Add(this.groupBox1);
  165. this.tabPageBurn.Location = new System.Drawing.Point(4, 22);
  166. this.tabPageBurn.Name = "tabPageBurn";
  167. this.tabPageBurn.Padding = new System.Windows.Forms.Padding(3);
  168. this.tabPageBurn.Size = new System.Drawing.Size(610, 305);
  169. this.tabPageBurn.TabIndex = 0;
  170. this.tabPageBurn.Text = "Burn Files";
  171. this.tabPageBurn.UseVisualStyleBackColor = true;
  172. //
  173. // groupBox3
  174. //
  175. this.groupBox3.Controls.Add(this.statusProgressBar);
  176. this.groupBox3.Controls.Add(this.labelStatusText);
  177. this.groupBox3.Controls.Add(this.buttonBurn);
  178. this.groupBox3.Location = new System.Drawing.Point(359, 144);
  179. this.groupBox3.Name = "groupBox3";
  180. this.groupBox3.Size = new System.Drawing.Size(245, 155);
  181. this.groupBox3.TabIndex = 11;
  182. this.groupBox3.TabStop = false;
  183. this.groupBox3.Text = "Progress";
  184. //
  185. // statusProgressBar
  186. //
  187. this.statusProgressBar.Location = new System.Drawing.Point(12, 70);
  188. this.statusProgressBar.Name = "statusProgressBar";
  189. this.statusProgressBar.Size = new System.Drawing.Size(224, 16);
  190. this.statusProgressBar.TabIndex = 8;
  191. //
  192. // labelStatusText
  193. //
  194. this.labelStatusText.Location = new System.Drawing.Point(9, 18);
  195. this.labelStatusText.Name = "labelStatusText";
  196. this.labelStatusText.Size = new System.Drawing.Size(227, 45);
  197. this.labelStatusText.TabIndex = 7;
  198. this.labelStatusText.Text = "status";
  199. this.labelStatusText.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
  200. //
  201. // buttonBurn
  202. //
  203. this.buttonBurn.Location = new System.Drawing.Point(84, 92);
  204. this.buttonBurn.Name = "buttonBurn";
  205. this.buttonBurn.Size = new System.Drawing.Size(88, 30);
  206. this.buttonBurn.TabIndex = 6;
  207. this.buttonBurn.Text = "&Burn";
  208. this.buttonBurn.UseVisualStyleBackColor = true;
  209. this.buttonBurn.Click += new System.EventHandler(this.buttonBurn_Click);
  210. //
  211. // groupBox2
  212. //
  213. this.groupBox2.Controls.Add(this.labelMediaType);
  214. this.groupBox2.Controls.Add(this.buttonDetectMedia);
  215. this.groupBox2.Controls.Add(this.label3);
  216. this.groupBox2.Controls.Add(this.labelTotalSize);
  217. this.groupBox2.Controls.Add(this.progressBarCapacity);
  218. this.groupBox2.Location = new System.Drawing.Point(359, 6);
  219. this.groupBox2.Name = "groupBox2";
  220. this.groupBox2.Size = new System.Drawing.Size(245, 132);
  221. this.groupBox2.TabIndex = 10;
  222. this.groupBox2.TabStop = false;
  223. this.groupBox2.Text = "Selected media type:";
  224. //
  225. // labelMediaType
  226. //
  227. this.labelMediaType.Location = new System.Drawing.Point(117, 20);
  228. this.labelMediaType.Name = "labelMediaType";
  229. this.labelMediaType.Size = new System.Drawing.Size(119, 40);
  230. this.labelMediaType.TabIndex = 10;
  231. this.labelMediaType.Text = "Press \'Detect Media\' Button";
  232. //
  233. // buttonDetectMedia
  234. //
  235. this.buttonDetectMedia.Location = new System.Drawing.Point(12, 20);
  236. this.buttonDetectMedia.Name = "buttonDetectMedia";
  237. this.buttonDetectMedia.Size = new System.Drawing.Size(98, 28);
  238. this.buttonDetectMedia.TabIndex = 9;
  239. this.buttonDetectMedia.Text = "Detect Media";
  240. this.buttonDetectMedia.UseVisualStyleBackColor = true;
  241. this.buttonDetectMedia.Click += new System.EventHandler(this.buttonDetectMedia_Click);
  242. //
  243. // groupBox1
  244. //
  245. this.groupBox1.Controls.Add(this.comboBoxVerification);
  246. this.groupBox1.Controls.Add(this.labelVerification);
  247. this.groupBox1.Controls.Add(this.checkBoxEject);
  248. this.groupBox1.Controls.Add(this.checkBoxCloseMedia);
  249. this.groupBox1.Controls.Add(this.textBoxLabel);
  250. this.groupBox1.Controls.Add(this.label2);
  251. this.groupBox1.Controls.Add(this.buttonRemoveFiles);
  252. this.groupBox1.Controls.Add(this.buttonAddFolders);
  253. this.groupBox1.Controls.Add(this.buttonAddFiles);
  254. this.groupBox1.Controls.Add(this.listBoxFiles);
  255. this.groupBox1.Location = new System.Drawing.Point(11, 6);
  256. this.groupBox1.Name = "groupBox1";
  257. this.groupBox1.Size = new System.Drawing.Size(337, 293);
  258. this.groupBox1.TabIndex = 7;
  259. this.groupBox1.TabStop = false;
  260. this.groupBox1.Text = "Files to burn";
  261. //
  262. // comboBoxVerification
  263. //
  264. this.comboBoxVerification.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  265. this.comboBoxVerification.FormattingEnabled = true;
  266. this.comboBoxVerification.Items.AddRange(new object[] {
  267. "None",
  268. "Quick",
  269. "Full"});
  270. this.comboBoxVerification.Location = new System.Drawing.Point(79, 257);
  271. this.comboBoxVerification.Name = "comboBoxVerification";
  272. this.comboBoxVerification.Size = new System.Drawing.Size(121, 21);
  273. this.comboBoxVerification.TabIndex = 9;
  274. this.comboBoxVerification.SelectedIndexChanged += new System.EventHandler(this.comboBoxVerification_SelectedIndexChanged);
  275. //
  276. // labelVerification
  277. //
  278. this.labelVerification.AutoSize = true;
  279. this.labelVerification.Location = new System.Drawing.Point(10, 260);
  280. this.labelVerification.Name = "labelVerification";
  281. this.labelVerification.Size = new System.Drawing.Size(62, 13);
  282. this.labelVerification.TabIndex = 8;
  283. this.labelVerification.Text = "Verification:";
  284. //
  285. // checkBoxEject
  286. //
  287. this.checkBoxEject.AutoSize = true;
  288. this.checkBoxEject.Checked = true;
  289. this.checkBoxEject.CheckState = System.Windows.Forms.CheckState.Checked;
  290. this.checkBoxEject.Location = new System.Drawing.Point(163, 221);
  291. this.checkBoxEject.Name = "checkBoxEject";
  292. this.checkBoxEject.Size = new System.Drawing.Size(118, 17);
  293. this.checkBoxEject.TabIndex = 7;
  294. this.checkBoxEject.Text = "Eject when finished";
  295. this.checkBoxEject.UseVisualStyleBackColor = true;
  296. //
  297. // checkBoxCloseMedia
  298. //
  299. this.checkBoxCloseMedia.AutoSize = true;
  300. this.checkBoxCloseMedia.Checked = true;
  301. this.checkBoxCloseMedia.CheckState = System.Windows.Forms.CheckState.Checked;
  302. this.checkBoxCloseMedia.Location = new System.Drawing.Point(10, 221);
  303. this.checkBoxCloseMedia.Name = "checkBoxCloseMedia";
  304. this.checkBoxCloseMedia.Size = new System.Drawing.Size(83, 17);
  305. this.checkBoxCloseMedia.TabIndex = 6;
  306. this.checkBoxCloseMedia.Text = "Close media";
  307. this.checkBoxCloseMedia.UseVisualStyleBackColor = true;
  308. //
  309. // textBoxLabel
  310. //
  311. this.textBoxLabel.Location = new System.Drawing.Point(123, 191);
  312. this.textBoxLabel.Name = "textBoxLabel";
  313. this.textBoxLabel.Size = new System.Drawing.Size(128, 20);
  314. this.textBoxLabel.TabIndex = 5;
  315. //
  316. // label2
  317. //
  318. this.label2.AutoSize = true;
  319. this.label2.Location = new System.Drawing.Point(42, 194);
  320. this.label2.Name = "label2";
  321. this.label2.Size = new System.Drawing.Size(74, 13);
  322. this.label2.TabIndex = 4;
  323. this.label2.Text = "Volume Label:";
  324. //
  325. // buttonRemoveFiles
  326. //
  327. this.buttonRemoveFiles.Location = new System.Drawing.Point(218, 157);
  328. this.buttonRemoveFiles.Name = "buttonRemoveFiles";
  329. this.buttonRemoveFiles.Size = new System.Drawing.Size(106, 27);
  330. this.buttonRemoveFiles.TabIndex = 3;
  331. this.buttonRemoveFiles.Text = "Remove File(s)...";
  332. this.buttonRemoveFiles.UseVisualStyleBackColor = true;
  333. this.buttonRemoveFiles.Click += new System.EventHandler(this.buttonRemoveFiles_Click);
  334. //
  335. // buttonAddFolders
  336. //
  337. this.buttonAddFolders.Location = new System.Drawing.Point(107, 157);
  338. this.buttonAddFolders.Name = "buttonAddFolders";
  339. this.buttonAddFolders.Size = new System.Drawing.Size(98, 27);
  340. this.buttonAddFolders.TabIndex = 2;
  341. this.buttonAddFolders.Text = "Add Folders...";
  342. this.buttonAddFolders.UseVisualStyleBackColor = true;
  343. this.buttonAddFolders.Click += new System.EventHandler(this.buttonAddFolders_Click);
  344. //
  345. // buttonAddFiles
  346. //
  347. this.buttonAddFiles.Location = new System.Drawing.Point(10, 157);
  348. this.buttonAddFiles.Name = "buttonAddFiles";
  349. this.buttonAddFiles.Size = new System.Drawing.Size(84, 27);
  350. this.buttonAddFiles.TabIndex = 1;
  351. this.buttonAddFiles.Text = "Add Files...";
  352. this.buttonAddFiles.UseVisualStyleBackColor = true;
  353. this.buttonAddFiles.Click += new System.EventHandler(this.buttonAddFiles_Click);
  354. //
  355. // listBoxFiles
  356. //
  357. this.listBoxFiles.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
  358. this.listBoxFiles.FormattingEnabled = true;
  359. this.listBoxFiles.ItemHeight = 24;
  360. this.listBoxFiles.Location = new System.Drawing.Point(10, 19);
  361. this.listBoxFiles.Name = "listBoxFiles";
  362. this.listBoxFiles.Size = new System.Drawing.Size(315, 124);
  363. this.listBoxFiles.TabIndex = 0;
  364. this.listBoxFiles.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.listBoxFiles_DrawItem);
  365. this.listBoxFiles.SelectedIndexChanged += new System.EventHandler(this.listBoxFiles_SelectedIndexChanged);
  366. //
  367. // tabPageFormat
  368. //
  369. this.tabPageFormat.Controls.Add(this.checkBoxQuickFormat);
  370. this.tabPageFormat.Controls.Add(this.checkBoxEjectFormat);
  371. this.tabPageFormat.Controls.Add(this.formatProgressBar);
  372. this.tabPageFormat.Controls.Add(this.labelFormatStatusText);
  373. this.tabPageFormat.Controls.Add(this.buttonFormat);
  374. this.tabPageFormat.Location = new System.Drawing.Point(4, 22);
  375. this.tabPageFormat.Name = "tabPageFormat";
  376. this.tabPageFormat.Padding = new System.Windows.Forms.Padding(3);
  377. this.tabPageFormat.Size = new System.Drawing.Size(610, 305);
  378. this.tabPageFormat.TabIndex = 1;
  379. this.tabPageFormat.Text = "Format Disc";
  380. this.tabPageFormat.UseVisualStyleBackColor = true;
  381. //
  382. // checkBoxQuickFormat
  383. //
  384. this.checkBoxQuickFormat.AutoSize = true;
  385. this.checkBoxQuickFormat.Checked = true;
  386. this.checkBoxQuickFormat.CheckState = System.Windows.Forms.CheckState.Checked;
  387. this.checkBoxQuickFormat.Location = new System.Drawing.Point(226, 52);
  388. this.checkBoxQuickFormat.Name = "checkBoxQuickFormat";
  389. this.checkBoxQuickFormat.Size = new System.Drawing.Size(89, 17);
  390. this.checkBoxQuickFormat.TabIndex = 14;
  391. this.checkBoxQuickFormat.Text = "Quick Format";
  392. this.checkBoxQuickFormat.UseVisualStyleBackColor = true;
  393. //
  394. // checkBoxEjectFormat
  395. //
  396. this.checkBoxEjectFormat.AutoSize = true;
  397. this.checkBoxEjectFormat.Checked = true;
  398. this.checkBoxEjectFormat.CheckState = System.Windows.Forms.CheckState.Checked;
  399. this.checkBoxEjectFormat.Location = new System.Drawing.Point(226, 28);
  400. this.checkBoxEjectFormat.Name = "checkBoxEjectFormat";
  401. this.checkBoxEjectFormat.Size = new System.Drawing.Size(118, 17);
  402. this.checkBoxEjectFormat.TabIndex = 12;
  403. this.checkBoxEjectFormat.Text = "Eject when finished";
  404. this.checkBoxEjectFormat.UseVisualStyleBackColor = true;
  405. //
  406. // formatProgressBar
  407. //
  408. this.formatProgressBar.Location = new System.Drawing.Point(126, 222);
  409. this.formatProgressBar.Name = "formatProgressBar";
  410. this.formatProgressBar.Size = new System.Drawing.Size(318, 16);
  411. this.formatProgressBar.TabIndex = 13;
  412. //
  413. // labelFormatStatusText
  414. //
  415. this.labelFormatStatusText.Location = new System.Drawing.Point(125, 160);
  416. this.labelFormatStatusText.Name = "labelFormatStatusText";
  417. this.labelFormatStatusText.Size = new System.Drawing.Size(321, 55);
  418. this.labelFormatStatusText.TabIndex = 11;
  419. this.labelFormatStatusText.Text = "status";
  420. this.labelFormatStatusText.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
  421. //
  422. // backgroundFormatWorker
  423. //
  424. this.backgroundFormatWorker.WorkerReportsProgress = true;
  425. this.backgroundFormatWorker.WorkerSupportsCancellation = true;
  426. this.backgroundFormatWorker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundFormatWorker_DoWork);
  427. this.backgroundFormatWorker.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.backgroundFormatWorker_RunWorkerCompleted);
  428. this.backgroundFormatWorker.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.backgroundFormatWorker_ProgressChanged);
  429. //
  430. // MainForm
  431. //
  432. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  433. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  434. this.ClientSize = new System.Drawing.Size(649, 401);
  435. this.Controls.Add(this.tabControl1);
  436. this.Controls.Add(this.supportedMediaLabel);
  437. this.Controls.Add(this.label1);
  438. this.Controls.Add(this.devicesComboBox);
  439. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  440. this.Name = "MainForm";
  441. this.Text = "BurnMedia";
  442. this.Load += new System.EventHandler(this.MainForm_Load);
  443. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
  444. this.tabControl1.ResumeLayout(false);
  445. this.tabPageBurn.ResumeLayout(false);
  446. this.groupBox3.ResumeLayout(false);
  447. this.groupBox2.ResumeLayout(false);
  448. this.groupBox2.PerformLayout();
  449. this.groupBox1.ResumeLayout(false);
  450. this.groupBox1.PerformLayout();
  451. this.tabPageFormat.ResumeLayout(false);
  452. this.tabPageFormat.PerformLayout();
  453. this.ResumeLayout(false);
  454. this.PerformLayout();
  455. }
  456. #endregion
  457. private System.Windows.Forms.ComboBox devicesComboBox;
  458. private System.Windows.Forms.Label label1;
  459. private System.Windows.Forms.Label supportedMediaLabel;
  460. private System.ComponentModel.BackgroundWorker backgroundBurnWorker;
  461. private System.Windows.Forms.FolderBrowserDialog folderBrowserDialog;
  462. private System.Windows.Forms.OpenFileDialog openFileDialog;
  463. private System.Windows.Forms.Label label3;
  464. private System.Windows.Forms.Label labelTotalSize;
  465. private System.Windows.Forms.ProgressBar progressBarCapacity;
  466. private System.Windows.Forms.Button buttonFormat;
  467. private System.Windows.Forms.TabControl tabControl1;
  468. private System.Windows.Forms.TabPage tabPageBurn;
  469. private System.Windows.Forms.GroupBox groupBox1;
  470. private System.Windows.Forms.CheckBox checkBoxEject;
  471. private System.Windows.Forms.CheckBox checkBoxCloseMedia;
  472. private System.Windows.Forms.TextBox textBoxLabel;
  473. private System.Windows.Forms.Label label2;
  474. private System.Windows.Forms.Button buttonRemoveFiles;
  475. private System.Windows.Forms.Button buttonAddFolders;
  476. private System.Windows.Forms.Button buttonAddFiles;
  477. private System.Windows.Forms.ListBox listBoxFiles;
  478. private System.Windows.Forms.Button buttonBurn;
  479. private System.Windows.Forms.TabPage tabPageFormat;
  480. private System.ComponentModel.BackgroundWorker backgroundFormatWorker;
  481. private System.Windows.Forms.GroupBox groupBox2;
  482. private System.Windows.Forms.GroupBox groupBox3;
  483. private System.Windows.Forms.Label labelStatusText;
  484. private System.Windows.Forms.ProgressBar statusProgressBar;
  485. private System.Windows.Forms.CheckBox checkBoxEjectFormat;
  486. private System.Windows.Forms.ProgressBar formatProgressBar;
  487. private System.Windows.Forms.Label labelFormatStatusText;
  488. private System.Windows.Forms.CheckBox checkBoxQuickFormat;
  489. private System.Windows.Forms.Label labelMediaType;
  490. private System.Windows.Forms.Button buttonDetectMedia;
  491. private System.Windows.Forms.ComboBox comboBoxVerification;
  492. private System.Windows.Forms.Label labelVerification;
  493. }
  494. }