-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbout.Designer.cs
126 lines (120 loc) · 5.42 KB
/
About.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
namespace ReverseText
{
partial class About
{
/// <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(About));
this.metroLabel1 = new MetroFramework.Controls.MetroLabel();
this.metroLink1 = new MetroFramework.Controls.MetroLink();
this.metroLabel2 = new MetroFramework.Controls.MetroLabel();
this.richTextBox1 = new System.Windows.Forms.RichTextBox();
this.metroLabel3 = new MetroFramework.Controls.MetroLabel();
this.metroLink2 = new MetroFramework.Controls.MetroLink();
this.SuspendLayout();
//
// metroLabel1
//
this.metroLabel1.AutoSize = true;
this.metroLabel1.Location = new System.Drawing.Point(44, 180);
this.metroLabel1.Name = "metroLabel1";
this.metroLabel1.Size = new System.Drawing.Size(246, 19);
this.metroLabel1.TabIndex = 0;
this.metroLabel1.Text = "Icon made by Creaticca Creative Agency";
//
// metroLink1
//
this.metroLink1.Location = new System.Drawing.Point(20, 240);
this.metroLink1.Name = "metroLink1";
this.metroLink1.Size = new System.Drawing.Size(122, 23);
this.metroLink1.TabIndex = 1;
this.metroLink1.Text = "Visit their website";
this.metroLink1.UseSelectable = true;
this.metroLink1.Click += new System.EventHandler(this.metroLink1_Click);
//
// metroLabel2
//
this.metroLabel2.AutoSize = true;
this.metroLabel2.Location = new System.Drawing.Point(20, 60);
this.metroLabel2.Name = "metroLabel2";
this.metroLabel2.Size = new System.Drawing.Size(306, 19);
this.metroLabel2.TabIndex = 2;
this.metroLabel2.Text = "This is my work for a little programming challenge.";
//
// richTextBox1
//
this.richTextBox1.Location = new System.Drawing.Point(20, 92);
this.richTextBox1.Name = "richTextBox1";
this.richTextBox1.Size = new System.Drawing.Size(306, 73);
this.richTextBox1.TabIndex = 3;
this.richTextBox1.Text = "Rules :\nTake a text or file of text and reverse the contents.\nYour output must sh" +
"ow the original text and the \nreversed text or content.\n";
//
// metroLabel3
//
this.metroLabel3.AutoSize = true;
this.metroLabel3.Location = new System.Drawing.Point(34, 199);
this.metroLabel3.Name = "metroLabel3";
this.metroLabel3.Size = new System.Drawing.Size(268, 19);
this.metroLabel3.TabIndex = 4;
this.metroLabel3.Text = "and is licensed by Creative Commons BY 3.0";
//
// metroLink2
//
this.metroLink2.Location = new System.Drawing.Point(152, 240);
this.metroLink2.Name = "metroLink2";
this.metroLink2.Size = new System.Drawing.Size(174, 23);
this.metroLink2.TabIndex = 5;
this.metroLink2.Text = "Creative Commons Website";
this.metroLink2.UseSelectable = true;
this.metroLink2.Click += new System.EventHandler(this.metroLink2_Click);
//
// About
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(345, 305);
this.Controls.Add(this.metroLink2);
this.Controls.Add(this.metroLabel3);
this.Controls.Add(this.richTextBox1);
this.Controls.Add(this.metroLabel2);
this.Controls.Add(this.metroLink1);
this.Controls.Add(this.metroLabel1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.Name = "About";
this.Resizable = false;
this.Text = "About";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private MetroFramework.Controls.MetroLabel metroLabel1;
private MetroFramework.Controls.MetroLink metroLink1;
private MetroFramework.Controls.MetroLabel metroLabel2;
private System.Windows.Forms.RichTextBox richTextBox1;
private MetroFramework.Controls.MetroLabel metroLabel3;
private MetroFramework.Controls.MetroLink metroLink2;
}
}