Skip to content

Commit

Permalink
About hinzugefügt
Browse files Browse the repository at this point in the history
  • Loading branch information
MisterX2000 committed Jul 27, 2015
1 parent a859c89 commit defd3d9
Show file tree
Hide file tree
Showing 6 changed files with 728 additions and 0 deletions.
107 changes: 107 additions & 0 deletions Placeholder Image/About.Designer.cs

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

32 changes: 32 additions & 0 deletions Placeholder Image/About.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
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;

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

private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start("http://misterx-hp.3server.de/");
linkLabel1.LinkVisited = true;
}

private void linkLabel2_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start("https://github.com/MisterX2000");
linkLabel2.LinkVisited = true;
}
}
}
Loading

0 comments on commit defd3d9

Please sign in to comment.