Added a new form to display the GPLv3 license for the project.

Resolves issue #6.
This commit is contained in:
2024-08-08 13:19:52 -04:00
parent 18e904d9ec
commit 1b3fb5d47c
6 changed files with 479 additions and 9 deletions

22
LicenseForm.cs Normal file
View File

@@ -0,0 +1,22 @@
using System.Diagnostics;
namespace PDF_Merge
{
public partial class LicenseForm : Form
{
public LicenseForm()
{
InitializeComponent();
}
private void GPLLink_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
Process.Start(new ProcessStartInfo("https://www.gnu.org/licenses/gpl-3.0.en.html") { UseShellExecute = true });
}
private void CloseBtn_Click(object sender, EventArgs e)
{
Close();
}
}
}