-
Notifications
You must be signed in to change notification settings - Fork 0
/
Form1.Designer.cs
137 lines (132 loc) · 5.57 KB
/
Form1.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
namespace ThreeVideoCallButtons
{
partial class VideoCall
{
/// <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()
{
tableLayoutPanel1 = new TableLayoutPanel();
button1 = new Button();
button2 = new Button();
button3 = new Button();
labelAppState = new Label();
tableLayoutPanel1.SuspendLayout();
SuspendLayout();
//
// tableLayoutPanel1
//
tableLayoutPanel1.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
tableLayoutPanel1.ColumnCount = 3;
tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 33.33333F));
tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 33.33333F));
tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 33.33333F));
tableLayoutPanel1.Controls.Add(button1, 2, 0);
tableLayoutPanel1.Controls.Add(button2, 2, 1);
tableLayoutPanel1.Controls.Add(button3, 2, 2);
tableLayoutPanel1.Controls.Add(labelAppState, 1, 0);
tableLayoutPanel1.Location = new Point(12, 12);
tableLayoutPanel1.Name = "tableLayoutPanel1";
tableLayoutPanel1.RowCount = 3;
tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Percent, 33.33333F));
tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Percent, 33.33333F));
tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Percent, 33.33333F));
tableLayoutPanel1.Size = new Size(1374, 606);
tableLayoutPanel1.TabIndex = 0;
//
// button1
//
button1.Anchor = AnchorStyles.None;
button1.BackColor = Color.IndianRed;
button1.Font = new Font("Segoe UI", 14F, FontStyle.Regular, GraphicsUnit.Point);
button1.Location = new Point(965, 30);
button1.Name = "button1";
button1.Size = new Size(360, 140);
button1.TabIndex = 0;
button1.Text = "Call Contact #1";
button1.UseVisualStyleBackColor = false;
button1.Click += button1_Click;
//
// button2
//
button2.Anchor = AnchorStyles.None;
button2.BackColor = Color.SkyBlue;
button2.Font = new Font("Segoe UI", 14F, FontStyle.Regular, GraphicsUnit.Point);
button2.Location = new Point(965, 231);
button2.Name = "button2";
button2.Size = new Size(360, 140);
button2.TabIndex = 1;
button2.Text = "Call Contact #2";
button2.UseVisualStyleBackColor = false;
button2.Click += button2_Click;
//
// button3
//
button3.Anchor = AnchorStyles.None;
button3.BackColor = Color.Gold;
button3.Font = new Font("Segoe UI", 14F, FontStyle.Regular, GraphicsUnit.Point);
button3.Location = new Point(965, 434);
button3.Name = "button3";
button3.Size = new Size(360, 140);
button3.TabIndex = 2;
button3.Text = "Call Contact #3";
button3.UseVisualStyleBackColor = false;
button3.Click += button3_Click;
//
// labelAppState
//
labelAppState.Anchor = AnchorStyles.None;
labelAppState.AutoSize = true;
labelAppState.BackColor = Color.White;
labelAppState.BorderStyle = BorderStyle.FixedSingle;
labelAppState.Font = new Font("Segoe UI", 16F, FontStyle.Regular, GraphicsUnit.Point);
labelAppState.ForeColor = Color.IndianRed;
labelAppState.Location = new Point(577, 77);
labelAppState.Name = "labelAppState";
labelAppState.Size = new Size(220, 47);
labelAppState.TabIndex = 3;
labelAppState.Text = "labelAppState";
labelAppState.TextAlign = ContentAlignment.TopCenter;
//
// VideoCall
//
AutoScaleDimensions = new SizeF(10F, 25F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(1400, 633);
Controls.Add(tableLayoutPanel1);
Name = "VideoCall";
Text = "Kiosk";
FormClosing += VideoCall_FormClosing;
Load += VideoCall_Load;
Shown += VideoCall_Shown;
tableLayoutPanel1.ResumeLayout(false);
tableLayoutPanel1.PerformLayout();
ResumeLayout(false);
}
#endregion
private TableLayoutPanel tableLayoutPanel1;
private Button button1;
private Button button2;
private Button button3;
private Label labelAppState;
}
}