-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathAboutForm.Designer.cs
More file actions
123 lines (118 loc) · 4.7 KB
/
AboutForm.Designer.cs
File metadata and controls
123 lines (118 loc) · 4.7 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
namespace Backsolate
{
partial class AboutForm
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AboutForm));
lblTitle = new Label();
btnClose = new Button();
lblAuthor = new Label();
creditsBox = new RichTextBox();
lblGitHubLink = new LinkLabel();
SuspendLayout();
//
// lblTitle
//
lblTitle.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
lblTitle.Font = new Font("Segoe UI Semibold", 36F, FontStyle.Bold, GraphicsUnit.Point, 0);
lblTitle.Location = new Point(0, 0);
lblTitle.Name = "lblTitle";
lblTitle.Size = new Size(402, 65);
lblTitle.TabIndex = 0;
lblTitle.Text = "Backsolate";
lblTitle.TextAlign = ContentAlignment.MiddleCenter;
//
// btnClose
//
btnClose.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
btnClose.Location = new Point(336, 289);
btnClose.Name = "btnClose";
btnClose.Size = new Size(57, 23);
btnClose.TabIndex = 1;
btnClose.Text = "&Close";
btnClose.UseVisualStyleBackColor = true;
btnClose.Click += btnClose_Click;
//
// lblAuthor
//
lblAuthor.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
lblAuthor.Location = new Point(0, 62);
lblAuthor.Name = "lblAuthor";
lblAuthor.Size = new Size(402, 22);
lblAuthor.TabIndex = 0;
lblAuthor.Text = "By TheOnlyASDK";
lblAuthor.TextAlign = ContentAlignment.TopCenter;
//
// creditsBox
//
creditsBox.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
creditsBox.BorderStyle = BorderStyle.FixedSingle;
creditsBox.Location = new Point(11, 84);
creditsBox.Name = "creditsBox";
creditsBox.ReadOnly = true;
creditsBox.Size = new Size(379, 198);
creditsBox.TabIndex = 2;
creditsBox.Text = resources.GetString("creditsBox.Text");
//
// lblGitHubLink
//
lblGitHubLink.AutoSize = true;
lblGitHubLink.LinkBehavior = LinkBehavior.HoverUnderline;
lblGitHubLink.Location = new Point(12, 292);
lblGitHubLink.Name = "lblGitHubLink";
lblGitHubLink.Size = new Size(45, 15);
lblGitHubLink.TabIndex = 3;
lblGitHubLink.TabStop = true;
lblGitHubLink.Text = "GitHub";
lblGitHubLink.LinkClicked += lblGitHubLink_LinkClicked;
//
// AboutForm
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(399, 318);
ControlBox = false;
Controls.Add(lblGitHubLink);
Controls.Add(creditsBox);
Controls.Add(btnClose);
Controls.Add(lblAuthor);
Controls.Add(lblTitle);
FormBorderStyle = FormBorderStyle.FixedDialog;
Icon = (Icon)resources.GetObject("$this.Icon");
MaximizeBox = false;
MinimizeBox = false;
Name = "AboutForm";
Text = "About...";
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label lblTitle;
private Button btnClose;
private Label lblAuthor;
private RichTextBox creditsBox;
private LinkLabel lblGitHubLink;
}
}