-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVideoForm.Designer.cs
109 lines (102 loc) · 5.2 KB
/
VideoForm.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
namespace TVFox
{
partial class VideoForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.overlayTopLeft = new System.Windows.Forms.Label();
this.mainTimer = new System.Windows.Forms.Timer(this.components);
this.overlayTopRight = new System.Windows.Forms.Label();
this.overlayBottomCenter = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// overlayTopLeft
//
this.overlayTopLeft.AutoSize = true;
this.overlayTopLeft.BackColor = System.Drawing.Color.Black;
this.overlayTopLeft.Font = new System.Drawing.Font("Consolas", 22F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point);
this.overlayTopLeft.ForeColor = System.Drawing.Color.Lime;
this.overlayTopLeft.Location = new System.Drawing.Point(14, 16);
this.overlayTopLeft.Name = "overlayTopLeft";
this.overlayTopLeft.Size = new System.Drawing.Size(238, 51);
this.overlayTopLeft.TabIndex = 0;
this.overlayTopLeft.Text = "Bark Bark";
this.overlayTopLeft.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// mainTimer
//
this.mainTimer.Enabled = true;
this.mainTimer.Tick += new System.EventHandler(this.HandleTimerTick);
//
// overlayTopRight
//
this.overlayTopRight.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.overlayTopRight.AutoSize = true;
this.overlayTopRight.BackColor = System.Drawing.Color.Black;
this.overlayTopRight.Font = new System.Drawing.Font("Consolas", 22F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point);
this.overlayTopRight.ForeColor = System.Drawing.Color.Lime;
this.overlayTopRight.Location = new System.Drawing.Point(1163, 16);
this.overlayTopRight.Name = "overlayTopRight";
this.overlayTopRight.Size = new System.Drawing.Size(118, 51);
this.overlayTopRight.TabIndex = 1;
this.overlayTopRight.Text = "MUTE";
this.overlayTopRight.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// overlayBottomCenter
//
this.overlayBottomCenter.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
this.overlayBottomCenter.AutoSize = true;
this.overlayBottomCenter.BackColor = System.Drawing.Color.Black;
this.overlayBottomCenter.Font = new System.Drawing.Font("Consolas", 22F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point);
this.overlayBottomCenter.ForeColor = System.Drawing.Color.Lime;
this.overlayBottomCenter.Location = new System.Drawing.Point(499, 625);
this.overlayBottomCenter.Name = "overlayBottomCenter";
this.overlayBottomCenter.Size = new System.Drawing.Size(334, 51);
this.overlayBottomCenter.TabIndex = 2;
this.overlayBottomCenter.Text = "WWWWWWWWWWWWW";
this.overlayBottomCenter.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// VideoForm
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
this.ClientSize = new System.Drawing.Size(1308, 805);
this.Controls.Add(this.overlayBottomCenter);
this.Controls.Add(this.overlayTopRight);
this.Controls.Add(this.overlayTopLeft);
this.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
this.MinimumSize = new System.Drawing.Size(320, 240);
this.Name = "VideoForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.WindowsDefaultBounds;
this.Text = "TvFox";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
public System.Windows.Forms.Label overlayTopLeft;
private System.Windows.Forms.Timer mainTimer;
public System.Windows.Forms.Label overlayTopRight;
public System.Windows.Forms.Label overlayBottomCenter;
}
}