Skip to content

Commit

Permalink
Airdrop error handling
Browse files Browse the repository at this point in the history
  • Loading branch information
ShadovvBeast committed Jul 7, 2021
1 parent 7bb3b9a commit d4c6783
Show file tree
Hide file tree
Showing 15 changed files with 2,493 additions and 24 deletions.
3 changes: 3 additions & 0 deletions .vs/ProjectSettings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"CurrentProjectSetting": null
}
Binary file added .vs/Solaire1/v16/.suo
Binary file not shown.
6 changes: 6 additions & 0 deletions .vs/VSWorkspaceState.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"ExpandedNodes": [
""
],
"PreviewInSolutionExplorer": false
}
Binary file added .vs/slnx.sqlite
Binary file not shown.
Binary file modified .vs/solaire/v16/.suo
Binary file not shown.
111 changes: 111 additions & 0 deletions About.Designer.cs

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

17 changes: 17 additions & 0 deletions About.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
using System.Windows.Forms;

namespace Solaire
{
public partial class About : Form
{
public About()
{
InitializeComponent();
}

private void lblGithub_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start("https://github.com/ShadovvBeast/Solaire");
}
}
}
Loading

0 comments on commit d4c6783

Please sign in to comment.