-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFormAbout.Designer.cs
156 lines (150 loc) · 7.7 KB
/
FormAbout.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
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
151
152
153
154
155
156
namespace SystemVolumeEditer
{
partial class FormAbout
{
/// <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(FormAbout));
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.labelSoftwareName = new System.Windows.Forms.Label();
this.labelDeveloper = new System.Windows.Forms.Label();
this.labelDate = new System.Windows.Forms.Label();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.linkLabelLinkedin = new System.Windows.Forms.LinkLabel();
this.linkLabelGithub = new System.Windows.Forms.LinkLabel();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// pictureBox1
//
this.pictureBox1.BackColor = System.Drawing.Color.Transparent;
this.pictureBox1.Image = global::SystemVolumeEditer.Properties.Resources.app_icon;
this.pictureBox1.Location = new System.Drawing.Point(103, 26);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(147, 130);
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pictureBox1.TabIndex = 0;
this.pictureBox1.TabStop = false;
//
// labelSoftwareName
//
this.labelSoftwareName.AutoSize = true;
this.labelSoftwareName.Location = new System.Drawing.Point(37, 192);
this.labelSoftwareName.Name = "labelSoftwareName";
this.labelSoftwareName.Size = new System.Drawing.Size(143, 20);
this.labelSoftwareName.TabIndex = 1;
this.labelSoftwareName.Text = "labelSoftwareName";
//
// labelDeveloper
//
this.labelDeveloper.AutoSize = true;
this.labelDeveloper.Location = new System.Drawing.Point(37, 226);
this.labelDeveloper.Name = "labelDeveloper";
this.labelDeveloper.Size = new System.Drawing.Size(113, 20);
this.labelDeveloper.TabIndex = 2;
this.labelDeveloper.Text = "labelDeveloper";
//
// labelDate
//
this.labelDate.AutoSize = true;
this.labelDate.Location = new System.Drawing.Point(37, 328);
this.labelDate.Name = "labelDate";
this.labelDate.Size = new System.Drawing.Size(74, 20);
this.labelDate.TabIndex = 3;
this.labelDate.Text = "labelDate";
//
// groupBox1
//
this.groupBox1.BackColor = System.Drawing.Color.ForestGreen;
this.groupBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.groupBox1.Controls.Add(this.linkLabelGithub);
this.groupBox1.Controls.Add(this.linkLabelLinkedin);
this.groupBox1.Controls.Add(this.pictureBox1);
this.groupBox1.Controls.Add(this.labelDate);
this.groupBox1.Controls.Add(this.labelSoftwareName);
this.groupBox1.Controls.Add(this.labelDeveloper);
this.groupBox1.Location = new System.Drawing.Point(37, 30);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(348, 385);
this.groupBox1.TabIndex = 4;
this.groupBox1.TabStop = false;
//
// linkLabelLinkedin
//
this.linkLabelLinkedin.AutoSize = true;
this.linkLabelLinkedin.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(50)))), ((int)(((byte)(50)))));
this.linkLabelLinkedin.Location = new System.Drawing.Point(37, 260);
this.linkLabelLinkedin.Name = "linkLabelLinkedin";
this.linkLabelLinkedin.Size = new System.Drawing.Size(128, 20);
this.linkLabelLinkedin.TabIndex = 4;
this.linkLabelLinkedin.TabStop = true;
this.linkLabelLinkedin.Text = "linkLabelLinkedin";
this.linkLabelLinkedin.VisitedLinkColor = System.Drawing.Color.Blue;
this.linkLabelLinkedin.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabelLinkedin_LinkClicked);
//
// linkLabelGithub
//
this.linkLabelGithub.AutoSize = true;
this.linkLabelGithub.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(50)))), ((int)(((byte)(50)))));
this.linkLabelGithub.Location = new System.Drawing.Point(37, 294);
this.linkLabelGithub.Name = "linkLabelGithub";
this.linkLabelGithub.Size = new System.Drawing.Size(116, 20);
this.linkLabelGithub.TabIndex = 5;
this.linkLabelGithub.TabStop = true;
this.linkLabelGithub.Text = "linkLabelGithub";
this.linkLabelGithub.VisitedLinkColor = System.Drawing.Color.Blue;
this.linkLabelGithub.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabelGithub_LinkClicked);
//
// FormAbout
//
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.Lime;
this.ClientSize = new System.Drawing.Size(423, 445);
this.Controls.Add(this.groupBox1);
this.Font = new System.Drawing.Font("Segoe UI Semibold", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.MaximizeBox = false;
this.Name = "FormAbout";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Hakkında";
this.Load += new System.EventHandler(this.FormAbout_Load);
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.Label labelSoftwareName;
private System.Windows.Forms.Label labelDeveloper;
private System.Windows.Forms.Label labelDate;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.LinkLabel linkLabelGithub;
private System.Windows.Forms.LinkLabel linkLabelLinkedin;
}
}