Mesen-X/GUI.NET/Forms/frmAbout.cs
2016-12-24 21:27:28 -05:00

30 lines
621 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
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)
{
Process.Start("http://www.mesen.ca");
}
private void picDonate_Click(object sender, EventArgs e)
{
Process.Start("http://www.mesen.ca/Donate.php?l=" + ResourceHelper.GetLanguageCode());
}
}
}