-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTaskTracking.Designer.cs
More file actions
112 lines (105 loc) · 4.33 KB
/
TaskTracking.Designer.cs
File metadata and controls
112 lines (105 loc) · 4.33 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
namespace TaskTracking
{
partial class TaskTracking
{
/// <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.b_Start = new System.Windows.Forms.Button();
this.b_Stop = new System.Windows.Forms.Button();
this.l_Time = new System.Windows.Forms.Label();
this.c_TaskSelection = new System.Windows.Forms.ComboBox();
this.l_WriteSuccess = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// b_Start
//
this.b_Start.Location = new System.Drawing.Point(33, 143);
this.b_Start.Name = "b_Start";
this.b_Start.Size = new System.Drawing.Size(75, 23);
this.b_Start.TabIndex = 0;
this.b_Start.Text = "Start";
this.b_Start.UseVisualStyleBackColor = true;
this.b_Start.Click += new System.EventHandler(this.b_Start_Click);
//
// b_Stop
//
this.b_Stop.Location = new System.Drawing.Point(119, 143);
this.b_Stop.Name = "b_Stop";
this.b_Stop.Size = new System.Drawing.Size(75, 23);
this.b_Stop.TabIndex = 1;
this.b_Stop.Text = "Stop";
this.b_Stop.UseVisualStyleBackColor = true;
this.b_Stop.Click += new System.EventHandler(this.b_Stop_Click);
//
// l_Time
//
this.l_Time.AutoSize = true;
this.l_Time.Font = new System.Drawing.Font("Segoe UI", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point);
this.l_Time.Location = new System.Drawing.Point(33, 26);
this.l_Time.Name = "l_Time";
this.l_Time.Size = new System.Drawing.Size(161, 32);
this.l_Time.TabIndex = 2;
this.l_Time.Text = "00:00:00.000";
//
// c_TaskSelection
//
this.c_TaskSelection.FormattingEnabled = true;
this.c_TaskSelection.Location = new System.Drawing.Point(33, 98);
this.c_TaskSelection.Name = "c_TaskSelection";
this.c_TaskSelection.Size = new System.Drawing.Size(161, 23);
this.c_TaskSelection.TabIndex = 3;
//
// l_WriteSuccess
//
this.l_WriteSuccess.AutoSize = true;
this.l_WriteSuccess.Location = new System.Drawing.Point(33, 80);
this.l_WriteSuccess.Name = "l_WriteSuccess";
this.l_WriteSuccess.Size = new System.Drawing.Size(0, 15);
this.l_WriteSuccess.TabIndex = 4;
//
// TaskTracking
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(221, 181);
this.Controls.Add(this.l_WriteSuccess);
this.Controls.Add(this.c_TaskSelection);
this.Controls.Add(this.l_Time);
this.Controls.Add(this.b_Stop);
this.Controls.Add(this.b_Start);
this.KeyPreview = true;
this.Name = "TaskTracking";
this.Text = "Task Tracking";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button b_Start;
private System.Windows.Forms.Button b_Stop;
private System.Windows.Forms.Label l_Time;
private System.Windows.Forms.ComboBox c_TaskSelection;
private System.Windows.Forms.Label l_WriteSuccess;
}
}