-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathFormMain.Designer.cs
80 lines (73 loc) · 3.16 KB
/
FormMain.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
namespace WinFormsAppNetCore
{
partial class FormMain
{
/// <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.labelDate = new System.Windows.Forms.Label();
this.labelTime = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// labelDate
//
this.labelDate.Dock = System.Windows.Forms.DockStyle.Top;
this.labelDate.Font = new System.Drawing.Font("Microsoft Sans Serif", 19.875F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.labelDate.Location = new System.Drawing.Point(0, 0);
this.labelDate.Name = "labelDate";
this.labelDate.Size = new System.Drawing.Size(800, 115);
this.labelDate.TabIndex = 0;
this.labelDate.Text = "labelDate";
this.labelDate.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// labelTime
//
this.labelTime.Dock = System.Windows.Forms.DockStyle.Top;
this.labelTime.Font = new System.Drawing.Font("Microsoft Sans Serif", 19.875F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.labelTime.Location = new System.Drawing.Point(0, 115);
this.labelTime.Name = "labelTime";
this.labelTime.Size = new System.Drawing.Size(800, 115);
this.labelTime.TabIndex = 1;
this.labelTime.Text = "labelTime";
this.labelTime.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// FormMain
//
this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 25F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 256);
this.Controls.Add(this.labelTime);
this.Controls.Add(this.labelDate);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "FormMain";
this.ShowIcon = false;
this.Text = "Clock";
this.ResumeLayout(false);
}
private System.Windows.Forms.Label labelTime;
private System.Windows.Forms.Label labelDate;
#endregion
}
}