Add "Cancel Shutdown" Button in WorkingForm. when use UpdateProgressBar(), devide...
[marukotoolbox.git] / mp4box / WorkingForm.Designer.cs
blob5f00c88b283bd05b93dede6a0ba5f146626c6e3b
1 namespace mp4box
3 partial class WorkingForm
5 /// <summary>
6 /// Required designer variable.
7 /// </summary>
8 private System.ComponentModel.IContainer components = null;
10 /// <summary>
11 /// Clean up any resources being used.
12 /// </summary>
13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14 protected override void Dispose(bool disposing)
16 if (disposing && (components != null))
18 components.Dispose();
20 base.Dispose(disposing);
23 #region Windows Form Designer generated code
25 /// <summary>
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
28 /// </summary>
29 private void InitializeComponent()
31 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WorkingForm));
32 this.buttonAbort = new System.Windows.Forms.Button();
33 this.buttonSave = new System.Windows.Forms.Button();
34 this.richTextBoxOutput = new System.Windows.Forms.RichTextBox();
35 this.labelworkCount = new System.Windows.Forms.Label();
36 this.progressBarX264 = new System.Windows.Forms.ProgressBar();
37 this.labelProgress = new System.Windows.Forms.Label();
38 this.CancelShutdownButton = new System.Windows.Forms.Button();
39 this.SuspendLayout();
40 //
41 // buttonAbort
42 //
43 this.buttonAbort.Location = new System.Drawing.Point(12, 270);
44 this.buttonAbort.Name = "buttonAbort";
45 this.buttonAbort.Size = new System.Drawing.Size(75, 21);
46 this.buttonAbort.TabIndex = 1;
47 this.buttonAbort.Text = "&Abort";
48 this.buttonAbort.UseVisualStyleBackColor = true;
49 this.buttonAbort.Click += new System.EventHandler(this.buttonAbort_Click);
50 //
51 // buttonSave
52 //
53 this.buttonSave.Location = new System.Drawing.Point(93, 270);
54 this.buttonSave.Name = "buttonSave";
55 this.buttonSave.Size = new System.Drawing.Size(75, 21);
56 this.buttonSave.TabIndex = 2;
57 this.buttonSave.Text = "&Save Log";
58 this.buttonSave.UseVisualStyleBackColor = true;
59 this.buttonSave.Click += new System.EventHandler(this.buttonSave_Click);
60 //
61 // richTextBoxOutput
62 //
63 this.richTextBoxOutput.Font = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
64 this.richTextBoxOutput.Location = new System.Drawing.Point(12, 11);
65 this.richTextBoxOutput.Name = "richTextBoxOutput";
66 this.richTextBoxOutput.ReadOnly = true;
67 this.richTextBoxOutput.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.ForcedVertical;
68 this.richTextBoxOutput.Size = new System.Drawing.Size(632, 253);
69 this.richTextBoxOutput.TabIndex = 4;
70 this.richTextBoxOutput.Text = "";
71 this.richTextBoxOutput.VScroll += new System.EventHandler(this.richTextBoxOutput_VScroll);
72 //
73 // labelworkCount
74 //
75 this.labelworkCount.AutoSize = true;
76 this.labelworkCount.Location = new System.Drawing.Point(286, 276);
77 this.labelworkCount.Name = "labelworkCount";
78 this.labelworkCount.Size = new System.Drawing.Size(95, 12);
79 this.labelworkCount.TabIndex = 6;
80 this.labelworkCount.Text = "MM/NN Completed";
81 //
82 // progressBarX264
83 //
84 this.progressBarX264.Location = new System.Drawing.Point(373, 270);
85 this.progressBarX264.Maximum = 1000;
86 this.progressBarX264.Name = "progressBarX264";
87 this.progressBarX264.Size = new System.Drawing.Size(217, 21);
88 this.progressBarX264.TabIndex = 5;
89 //
90 // labelProgress
91 //
92 this.labelProgress.AutoSize = true;
93 this.labelProgress.Font = new System.Drawing.Font("Consolas", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
94 this.labelProgress.Location = new System.Drawing.Point(596, 276);
95 this.labelProgress.Name = "labelProgress";
96 this.labelProgress.Size = new System.Drawing.Size(56, 14);
97 this.labelProgress.TabIndex = 7;
98 this.labelProgress.Text = "188.88%";
99 //
100 // CancelShutdownButton
102 this.CancelShutdownButton.Location = new System.Drawing.Point(174, 270);
103 this.CancelShutdownButton.Name = "CancelShutdownButton";
104 this.CancelShutdownButton.Size = new System.Drawing.Size(106, 21);
105 this.CancelShutdownButton.TabIndex = 8;
106 this.CancelShutdownButton.Text = "Cancel Shutdown";
107 this.CancelShutdownButton.UseVisualStyleBackColor = true;
108 this.CancelShutdownButton.Click += new System.EventHandler(this.CancelShutdownButton_Click);
110 // WorkingForm
112 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
113 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
114 this.ClientSize = new System.Drawing.Size(656, 299);
115 this.Controls.Add(this.CancelShutdownButton);
116 this.Controls.Add(this.labelProgress);
117 this.Controls.Add(this.labelworkCount);
118 this.Controls.Add(this.progressBarX264);
119 this.Controls.Add(this.richTextBoxOutput);
120 this.Controls.Add(this.buttonSave);
121 this.Controls.Add(this.buttonAbort);
122 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
123 this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
124 this.MaximizeBox = false;
125 this.Name = "WorkingForm";
126 this.Text = "<Title is modified by UpdateWorkCountUI()>";
127 this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.WorkingForm_FormClosing);
128 this.Load += new System.EventHandler(this.WorkingForm_Load);
129 this.ResumeLayout(false);
130 this.PerformLayout();
134 #endregion
136 private System.Windows.Forms.Button buttonAbort;
137 private System.Windows.Forms.Button buttonSave;
138 private System.Windows.Forms.RichTextBox richTextBoxOutput;
139 private System.Windows.Forms.ProgressBar progressBarX264;
140 private System.Windows.Forms.Label labelworkCount;
141 private System.Windows.Forms.Label labelProgress;
142 private System.Windows.Forms.Button CancelShutdownButton;