Skip to content

Commit

Permalink
+Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Rodrigo Pinto committed Jun 5, 2022
1 parent 5c2ccfe commit bbdabd8
Show file tree
Hide file tree
Showing 67 changed files with 10,015 additions and 2 deletions.
400 changes: 400 additions & 0 deletions .gitignore

Large diffs are not rendered by default.

138 changes: 138 additions & 0 deletions About.Designer.cs

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

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

namespace Scoutmans.SwissArmyKnife
{
public partial class frmAbout : Form
{
public frmAbout()
{
InitializeComponent();
}

private void label1_Click(object sender, EventArgs e)
{
Process.Start("https://www.scoutman.pt");
}

private void label2_Click(object sender, EventArgs e)
{
Process.Start("https://github.com/ScoutmanPt/Swiss.Army.Knife");
}
}
}
Loading

0 comments on commit bbdabd8

Please sign in to comment.