Skip to content

Commit

Permalink
v2.2
Browse files Browse the repository at this point in the history
- Remade entire project in .NET Core 5.0
- Added fancy icons for stuffs and an about form.
- Added a way to test out generated signatures.
  • Loading branch information
ItsBranK committed Aug 21, 2021
1 parent 34ffda9 commit a58b0c7
Show file tree
Hide file tree
Showing 28 changed files with 5,995 additions and 1,126 deletions.
174 changes: 174 additions & 0 deletions AboutFrm.Designer.cs

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

46 changes: 46 additions & 0 deletions AboutFrm.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
//#define X64BIT
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Diagnostics;
using System.Windows.Forms;

namespace SignatureMaker
{
public partial class AboutFrm : Form
{
static readonly string Version = "v2.2";

public AboutFrm()
{
InitializeComponent();
}

private void AboutFrm_Load(object sender, EventArgs e)
{
#if X64BIT
this.Text = "ItsBranK's Signature Maker (x64) - About";
ArchetypeLbl.Text = "x64";
#else
this.Text = "ItsBranK's Signature Maker (x32) - About";
ArchetypeLbl.Text = "x32";
#endif
VersionLbl.Text = Version;
}

private void GitHubLbl_Click(object sender, EventArgs e)
{
Process.Start(new ProcessStartInfo(GitHubLbl.Text) { UseShellExecute = true });
}

private void IconsLbl_Click(object sender, EventArgs e)
{
Process.Start(new ProcessStartInfo(IconsLbl.Text) { UseShellExecute = true });
}
}
}
Loading

0 comments on commit a58b0c7

Please sign in to comment.