Skip to content

Commit

Permalink
Version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
patschl committed Jun 13, 2021
1 parent b6996ba commit a8ad2d7
Show file tree
Hide file tree
Showing 14 changed files with 5,627 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.idea/

**/*.sln**

**/bin/
bin/

**/obj/
obj/

**/App.config
127 changes: 127 additions & 0 deletions Quicksearcher/Forms/About.Designer.cs

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

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

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

private void ok_Click(object sender, EventArgs e)
{
Close();
}

private void github_link_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
Process.Start("https://github.com/patschl/Quicksearcher");
}
}
}
Loading

0 comments on commit a8ad2d7

Please sign in to comment.