-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAboutForm.Designer.cs
More file actions
150 lines (145 loc) · 5.44 KB
/
AboutForm.Designer.cs
File metadata and controls
150 lines (145 loc) · 5.44 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
namespace Mouse_Mender
{
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));
pictureBox1 = new PictureBox();
label1 = new Label();
groupBox4 = new GroupBox();
label7 = new Label();
label6 = new Label();
groupBox1 = new GroupBox();
label2 = new Label();
((System.ComponentModel.ISupportInitialize)pictureBox1).BeginInit();
groupBox4.SuspendLayout();
groupBox1.SuspendLayout();
SuspendLayout();
//
// pictureBox1
//
pictureBox1.Image = (Image)resources.GetObject("pictureBox1.Image");
pictureBox1.Location = new Point(166, 31);
pictureBox1.Name = "pictureBox1";
pictureBox1.Size = new Size(79, 81);
pictureBox1.SizeMode = PictureBoxSizeMode.Zoom;
pictureBox1.TabIndex = 0;
pictureBox1.TabStop = false;
//
// label1
//
label1.AutoSize = true;
label1.Font = new Font("Segoe UI", 14.25F, FontStyle.Bold, GraphicsUnit.Point, 0);
label1.Location = new Point(135, 3);
label1.Name = "label1";
label1.Size = new Size(147, 25);
label1.TabIndex = 1;
label1.Text = "Mouse Mender";
//
// groupBox4
//
groupBox4.BackColor = SystemColors.Control;
groupBox4.Controls.Add(label7);
groupBox4.Controls.Add(label6);
groupBox4.Location = new Point(0, 177);
groupBox4.Name = "groupBox4";
groupBox4.Size = new Size(413, 35);
groupBox4.TabIndex = 6;
groupBox4.TabStop = false;
//
// label7
//
label7.AutoSize = true;
label7.Location = new Point(290, 15);
label7.Name = "label7";
label7.Size = new Size(120, 15);
label7.TabIndex = 1;
label7.Text = "Mouse Mender v0.0.0";
//
// label6
//
label6.AutoSize = true;
label6.Location = new Point(2, 15);
label6.Name = "label6";
label6.Size = new Size(132, 15);
label6.TabIndex = 0;
label6.Text = "Made by CodingCarson";
//
// groupBox1
//
groupBox1.Controls.Add(label2);
groupBox1.Location = new Point(12, 107);
groupBox1.Name = "groupBox1";
groupBox1.Size = new Size(389, 71);
groupBox1.TabIndex = 7;
groupBox1.TabStop = false;
groupBox1.Text = "About";
//
// label2
//
label2.AutoSize = true;
label2.Location = new Point(6, 19);
label2.Name = "label2";
label2.Size = new Size(376, 45);
label2.TabIndex = 0;
label2.Text = "A lightweight easy to use program made to fix the issue of programs\r\nthat fail to bind your mouse to the screen they are running on causing\r\nissues with clicking randomly on another screen";
label2.TextAlign = ContentAlignment.TopCenter;
//
// AboutForm
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(413, 211);
Controls.Add(pictureBox1);
Controls.Add(groupBox1);
Controls.Add(groupBox4);
Controls.Add(label1);
FormBorderStyle = FormBorderStyle.FixedSingle;
Icon = (Icon)resources.GetObject("$this.Icon");
MaximizeBox = false;
MinimizeBox = false;
Name = "AboutForm";
SizeGripStyle = SizeGripStyle.Hide;
StartPosition = FormStartPosition.Manual;
Text = "Mouse Mender - About";
Load += AboutForm_Load;
((System.ComponentModel.ISupportInitialize)pictureBox1).EndInit();
groupBox4.ResumeLayout(false);
groupBox4.PerformLayout();
groupBox1.ResumeLayout(false);
groupBox1.PerformLayout();
ResumeLayout(false);
PerformLayout();
}
#endregion
private PictureBox pictureBox1;
private Label label1;
private GroupBox groupBox4;
private Label label7;
private Label label6;
private GroupBox groupBox1;
private Label label2;
}
}