Skip to content

Commit

Permalink
Add project files.
Browse files Browse the repository at this point in the history
  • Loading branch information
Natasha Kutas committed Aug 26, 2016
1 parent b2df387 commit db962da
Show file tree
Hide file tree
Showing 19 changed files with 4,869 additions and 0 deletions.
22 changes: 22 additions & 0 deletions Auto Key Presser.sln
@@ -0,0 +1,22 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.23107.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Auto Key Presser", "Auto Key Presser\Auto Key Presser.csproj", "{EEC422D7-2284-453E-BFD8-8BE28A728AF1}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{EEC422D7-2284-453E-BFD8-8BE28A728AF1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{EEC422D7-2284-453E-BFD8-8BE28A728AF1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{EEC422D7-2284-453E-BFD8-8BE28A728AF1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{EEC422D7-2284-453E-BFD8-8BE28A728AF1}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
104 changes: 104 additions & 0 deletions Auto Key Presser/AboutFrm.Designer.cs

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

38 changes: 38 additions & 0 deletions Auto Key Presser/AboutFrm.cs
@@ -0,0 +1,38 @@
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.Windows.Forms;
using System.Diagnostics;

namespace Auto_Key_Presser
{
public partial class AboutFrm : Form
{
public AboutFrm()
{
InitializeComponent();
}

private void CloseBtn_Click(object sender, EventArgs e)
{
this.Close();
}

private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
ProcessStartInfo sInfo = new ProcessStartInfo("http://www.toxia.net");
Process.Start(sInfo);
}

private void linkLabel2_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
ProcessStartInfo sInfo = new ProcessStartInfo("https://github.com/MissToxia");
Process.Start(sInfo);
}
}
}

0 comments on commit db962da

Please sign in to comment.