-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSplashForm.Designer.cs
More file actions
58 lines (54 loc) · 1.96 KB
/
Copy pathSplashForm.Designer.cs
File metadata and controls
58 lines (54 loc) · 1.96 KB
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
namespace MultiDisplayVCPServer
{
partial class SplashForm
{
private System.ComponentModel.IContainer components = null;
private System.Windows.Forms.Label lblStatus;
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
private void InitializeComponent()
{
lblStatus = new Label();
SuspendLayout();
//
// lblStatus
//
lblStatus.Font = new Font("Microsoft Sans Serif", 12F, FontStyle.Regular, GraphicsUnit.Point, 0);
lblStatus.ForeColor = Color.White;
lblStatus.Location = new Point(13, 9);
lblStatus.Margin = new Padding(4, 0, 4, 0);
lblStatus.Name = "lblStatus";
lblStatus.Size = new Size(300, 30);
lblStatus.TabIndex = 0;
lblStatus.Text = "Multi-Display VCP Server is initializing...";
lblStatus.TextAlign = ContentAlignment.MiddleCenter;
lblStatus.Click += lblStatus_Click;
//
// SplashForm
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
BackColor = Color.FromArgb(45, 45, 48);
ClientSize = new Size(320, 45);
Controls.Add(lblStatus);
ControlBox = false;
FormBorderStyle = FormBorderStyle.None;
Margin = new Padding(4, 3, 4, 3);
Name = "SplashForm";
ShowInTaskbar = false;
StartPosition = FormStartPosition.CenterScreen;
Text = "SplashForm";
TopMost = true;
Load += SplashForm_Load;
ResumeLayout(false);
}
#endregion
}
}