-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm1.Designer.cs
More file actions
125 lines (119 loc) · 5.79 KB
/
Form1.Designer.cs
File metadata and controls
125 lines (119 loc) · 5.79 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
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
namespace TimeInTarkovDesk
{
partial class Form1
{
/// <summary>
/// Erforderliche Designervariable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Verwendete Ressourcen bereinigen.
/// </summary>
/// <param name="disposing">True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Vom Windows Form-Designer generierter Code
/// <summary>
/// Erforderliche Methode für die Designerunterstützung.
/// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
this.groupBoxTime1 = new System.Windows.Forms.GroupBox();
this.label1 = new System.Windows.Forms.Label();
this.groupBoxTime2 = new System.Windows.Forms.GroupBox();
this.label2 = new System.Windows.Forms.Label();
this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
this.backgroundWorker2 = new System.ComponentModel.BackgroundWorker();
this.panel1 = new System.Windows.Forms.Panel();
this.groupBoxTime1.SuspendLayout();
this.groupBoxTime2.SuspendLayout();
this.SuspendLayout();
//
// groupBoxTime1
//
this.groupBoxTime1.BackColor = System.Drawing.Color.Transparent;
this.groupBoxTime1.Controls.Add(this.label1);
this.groupBoxTime1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.groupBoxTime1.Location = new System.Drawing.Point(70, 23);
this.groupBoxTime1.Name = "groupBoxTime1";
this.groupBoxTime1.Size = new System.Drawing.Size(188, 71);
this.groupBoxTime1.TabIndex = 1;
this.groupBoxTime1.TabStop = false;
this.groupBoxTime1.Text = "Time I";
//
// label1
//
this.label1.AutoSize = true;
this.label1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label1.Location = new System.Drawing.Point(33, 27);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(125, 29);
this.label1.TabIndex = 1;
this.label1.Text = "00:00:000";
//
// groupBoxTime2
//
this.groupBoxTime2.Controls.Add(this.label2);
this.groupBoxTime2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.groupBoxTime2.Location = new System.Drawing.Point(345, 23);
this.groupBoxTime2.Name = "groupBoxTime2";
this.groupBoxTime2.Size = new System.Drawing.Size(188, 71);
this.groupBoxTime2.TabIndex = 2;
this.groupBoxTime2.TabStop = false;
this.groupBoxTime2.Text = "Time II";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label2.Location = new System.Drawing.Point(36, 27);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(125, 29);
this.label2.TabIndex = 2;
this.label2.Text = "00:00:000";
//
// panel1
//
this.panel1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel1.BackgroundImage")));
this.panel1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.panel1.Location = new System.Drawing.Point(549, 81);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(45, 45);
this.panel1.TabIndex = 3;
this.panel1.Click += new System.EventHandler(this.panel1_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(595, 125);
this.Controls.Add(this.panel1);
this.Controls.Add(this.groupBoxTime2);
this.Controls.Add(this.groupBoxTime1);
this.Name = "Form1";
this.Text = "Time in Escape from Tarkov";
this.groupBoxTime1.ResumeLayout(false);
this.groupBoxTime1.PerformLayout();
this.groupBoxTime2.ResumeLayout(false);
this.groupBoxTime2.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.GroupBox groupBoxTime1;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.GroupBox groupBoxTime2;
private System.Windows.Forms.Label label2;
private System.ComponentModel.BackgroundWorker backgroundWorker1;
private System.ComponentModel.BackgroundWorker backgroundWorker2;
private System.Windows.Forms.Panel panel1;
}
}