-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLiveForm.Designer.cs
91 lines (84 loc) · 4.01 KB
/
LiveForm.Designer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
namespace LiveFrame
{
partial class LiveForm
{
/// <summary>
/// 必要なデザイナー変数です。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 使用中のリソースをすべてクリーンアップします。
/// </summary>
/// <param name="disposing">マネージド リソースを破棄する場合は true を指定し、その他の場合は false を指定します。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows フォーム デザイナーで生成されたコード
/// <summary>
/// デザイナー サポートに必要なメソッドです。このメソッドの内容を
/// コード エディターで変更しないでください。
/// </summary>
private void InitializeComponent()
{
this.labelLiveFrame = new System.Windows.Forms.Label();
this.labelBeRightBack = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// labelLiveFrame
//
this.labelLiveFrame.BackColor = System.Drawing.Color.Transparent;
this.labelLiveFrame.Dock = System.Windows.Forms.DockStyle.Fill;
this.labelLiveFrame.Enabled = false;
this.labelLiveFrame.Font = new System.Drawing.Font("MS UI Gothic", 90F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
this.labelLiveFrame.Location = new System.Drawing.Point(0, 0);
this.labelLiveFrame.Name = "labelLiveFrame";
this.labelLiveFrame.Size = new System.Drawing.Size(800, 450);
this.labelLiveFrame.TabIndex = 0;
this.labelLiveFrame.Text = "LiveFrame";
this.labelLiveFrame.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.labelLiveFrame.UseMnemonic = false;
//
// labelBeRightBack
//
this.labelBeRightBack.BackColor = System.Drawing.Color.Transparent;
this.labelBeRightBack.Dock = System.Windows.Forms.DockStyle.Fill;
this.labelBeRightBack.Enabled = false;
this.labelBeRightBack.Font = new System.Drawing.Font("MS UI Gothic", 90F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
this.labelBeRightBack.Location = new System.Drawing.Point(0, 0);
this.labelBeRightBack.Name = "labelBeRightBack";
this.labelBeRightBack.Size = new System.Drawing.Size(800, 450);
this.labelBeRightBack.TabIndex = 1;
this.labelBeRightBack.Text = "be right back";
this.labelBeRightBack.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.labelBeRightBack.UseMnemonic = false;
this.labelBeRightBack.Visible = false;
//
// LiveForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.Control;
this.ClientSize = new System.Drawing.Size(800, 450);
this.ControlBox = false;
this.Controls.Add(this.labelBeRightBack);
this.Controls.Add(this.labelLiveFrame);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "LiveForm";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.TopMost = true;
this.Paint += new System.Windows.Forms.PaintEventHandler(this.LiveForm_Paint);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Label labelLiveFrame;
private System.Windows.Forms.Label labelBeRightBack;
}
}