add Blu-ray PGS .SUP Subtitle support in avs tab
[marukotoolbox.git] / mp4box / InputBox.Designer.cs
bloba6e062ee4180c582c2644d955a044e7c5b73313b
1 namespace mp4box
3 partial class InputBox
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(InputBox));
32 this.text = new System.Windows.Forms.TextBox();
33 this.lblMessage = new System.Windows.Forms.Label();
34 this.btnOk = new ControlExs.QQButton();
35 this.btnCancel = new ControlExs.QQButton();
36 this.SuspendLayout();
37 //
38 // text
39 //
40 this.text.Location = new System.Drawing.Point(12, 80);
41 this.text.Name = "text";
42 this.text.Size = new System.Drawing.Size(326, 21);
43 this.text.TabIndex = 4;
44 this.text.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.text_KeyPress);
45 //
46 // lblMessage
47 //
48 this.lblMessage.AutoSize = true;
49 this.lblMessage.Location = new System.Drawing.Point(10, 9);
50 this.lblMessage.Name = "lblMessage";
51 this.lblMessage.Size = new System.Drawing.Size(35, 12);
52 this.lblMessage.TabIndex = 5;
53 this.lblMessage.Text = "标签1";
54 //
55 // btnOk
56 //
57 this.btnOk.Font = new System.Drawing.Font("微软雅黑", 9F);
58 this.btnOk.Location = new System.Drawing.Point(270, 12);
59 this.btnOk.Name = "btnOk";
60 this.btnOk.Size = new System.Drawing.Size(68, 23);
61 this.btnOk.TabIndex = 6;
62 this.btnOk.Text = "确定";
63 this.btnOk.UseVisualStyleBackColor = true;
64 this.btnOk.Click += new System.EventHandler(this.qqButton1_Click);
65 //
66 // btnCancel
67 //
68 this.btnCancel.Font = new System.Drawing.Font("微软雅黑", 9F);
69 this.btnCancel.Location = new System.Drawing.Point(270, 41);
70 this.btnCancel.Name = "btnCancel";
71 this.btnCancel.Size = new System.Drawing.Size(68, 23);
72 this.btnCancel.TabIndex = 7;
73 this.btnCancel.Text = "取消";
74 this.btnCancel.UseVisualStyleBackColor = true;
75 this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
76 //
77 // InputBox
78 //
79 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
80 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
81 this.ClientSize = new System.Drawing.Size(350, 112);
82 this.Controls.Add(this.btnCancel);
83 this.Controls.Add(this.btnOk);
84 this.Controls.Add(this.lblMessage);
85 this.Controls.Add(this.text);
86 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
87 this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
88 this.MaximizeBox = false;
89 this.Name = "InputBox";
90 this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
91 this.Text = "输入框";
92 this.ResumeLayout(false);
93 this.PerformLayout();
97 #endregion
99 private System.Windows.Forms.TextBox text;
100 private System.Windows.Forms.Label lblMessage;
101 private ControlExs.QQButton btnOk;
102 private ControlExs.QQButton btnCancel;