Mesen-X/GUI.NET/Forms/frmAbout.cs
Souryo db9d88e582 Version Update: 0.1.3
-Fixed a number of startup bugs
-Packaged MSVC DLLs
2016-05-02 20:22:17 -04:00

24 lines
456 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Linq;
using System.Reflection;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Mesen.GUI.Forms
{
partial class frmAbout : BaseForm
{
public frmAbout()
{
InitializeComponent();
}
private void lblLink_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("http://www.mesen.ca");
}
}
}