Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added ability to resize AboutBox form #188

Merged
merged 1 commit into from
Apr 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
280 changes: 140 additions & 140 deletions src/LessMsi.Gui/AboutBox.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 6 additions & 3 deletions src/LessMsi.Gui/AboutBox.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System;
using LessMsi.Gui.Properties;
using System;
using System.Diagnostics;
using System.Reflection;
using System.Windows.Forms;
Expand All @@ -14,7 +15,9 @@ public AboutBox()
this.labelProductName.Text = AssemblyProduct;
this.labelVersion.Text = String.Format("Version {0}", AssemblyVersion);
this.labelCopyright.Text = AssemblyCopyright;
}

Icon = Resources.LessmsiIcon;
}

#region Assembly Attribute Accessors

Expand Down Expand Up @@ -115,4 +118,4 @@ private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs
Process.Start(link);
}
}
}
}