Added a new form to display the GPLv3 license for the project.
Resolves issue #6.
This commit is contained in:
Generated
+9
-7
@@ -45,6 +45,7 @@
|
||||
tableLayoutPanel.ColumnCount = 2;
|
||||
tableLayoutPanel.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 33F));
|
||||
tableLayoutPanel.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 67F));
|
||||
tableLayoutPanel.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 20F));
|
||||
tableLayoutPanel.Controls.Add(logoPictureBox, 0, 0);
|
||||
tableLayoutPanel.Controls.Add(labelProductName, 1, 0);
|
||||
tableLayoutPanel.Controls.Add(labelVersion, 1, 1);
|
||||
@@ -61,8 +62,8 @@
|
||||
tableLayoutPanel.RowStyles.Add(new RowStyle(SizeType.Percent, 10F));
|
||||
tableLayoutPanel.RowStyles.Add(new RowStyle(SizeType.Percent, 10F));
|
||||
tableLayoutPanel.RowStyles.Add(new RowStyle(SizeType.Percent, 10F));
|
||||
tableLayoutPanel.RowStyles.Add(new RowStyle(SizeType.Percent, 50F));
|
||||
tableLayoutPanel.RowStyles.Add(new RowStyle(SizeType.Percent, 10F));
|
||||
tableLayoutPanel.RowStyles.Add(new RowStyle(SizeType.Percent, 51.17647F));
|
||||
tableLayoutPanel.RowStyles.Add(new RowStyle(SizeType.Percent, 9.607843F));
|
||||
tableLayoutPanel.Size = new Size(695, 510);
|
||||
tableLayoutPanel.TabIndex = 0;
|
||||
//
|
||||
@@ -94,7 +95,7 @@
|
||||
// labelVersion
|
||||
//
|
||||
labelVersion.Dock = DockStyle.Fill;
|
||||
labelVersion.Location = new Point(239, 51);
|
||||
labelVersion.Location = new Point(239, 50);
|
||||
labelVersion.Margin = new Padding(10, 0, 5, 0);
|
||||
labelVersion.MaximumSize = new Size(0, 33);
|
||||
labelVersion.Name = "labelVersion";
|
||||
@@ -106,7 +107,7 @@
|
||||
// labelCopyright
|
||||
//
|
||||
labelCopyright.Dock = DockStyle.Fill;
|
||||
labelCopyright.Location = new Point(239, 102);
|
||||
labelCopyright.Location = new Point(239, 100);
|
||||
labelCopyright.Margin = new Padding(10, 0, 5, 0);
|
||||
labelCopyright.MaximumSize = new Size(0, 33);
|
||||
labelCopyright.Name = "labelCopyright";
|
||||
@@ -114,11 +115,12 @@
|
||||
labelCopyright.TabIndex = 21;
|
||||
labelCopyright.Text = "Copyright";
|
||||
labelCopyright.TextAlign = ContentAlignment.MiddleLeft;
|
||||
labelCopyright.Click += labelCopyright_Click;
|
||||
//
|
||||
// labelCompanyName
|
||||
//
|
||||
labelCompanyName.Dock = DockStyle.Fill;
|
||||
labelCompanyName.Location = new Point(239, 153);
|
||||
labelCompanyName.Location = new Point(239, 150);
|
||||
labelCompanyName.Margin = new Padding(10, 0, 5, 0);
|
||||
labelCompanyName.MaximumSize = new Size(0, 33);
|
||||
labelCompanyName.Name = "labelCompanyName";
|
||||
@@ -130,13 +132,13 @@
|
||||
// textBoxDescription
|
||||
//
|
||||
textBoxDescription.Dock = DockStyle.Fill;
|
||||
textBoxDescription.Location = new Point(239, 210);
|
||||
textBoxDescription.Location = new Point(239, 206);
|
||||
textBoxDescription.Margin = new Padding(10, 6, 5, 6);
|
||||
textBoxDescription.Multiline = true;
|
||||
textBoxDescription.Name = "textBoxDescription";
|
||||
textBoxDescription.ReadOnly = true;
|
||||
textBoxDescription.ScrollBars = ScrollBars.Both;
|
||||
textBoxDescription.Size = new Size(451, 243);
|
||||
textBoxDescription.Size = new Size(451, 246);
|
||||
textBoxDescription.TabIndex = 23;
|
||||
textBoxDescription.TabStop = false;
|
||||
textBoxDescription.Text = "Description";
|
||||
|
||||
Reference in New Issue
Block a user