BizHawk/BizHawk.Client.DiscoHawk/About.cs

25 lines
513 B
C#

using System;
using System.Windows.Forms;
namespace BizHawk.Client.DiscoHawk
{
public partial class About : Form
{
public About()
{
InitializeComponent();
lblVersion.Text = $"v{System.Reflection.Assembly.GetExecutingAssembly().GetName().Version}";
}
private void richTextBox1_LinkClicked(object sender, LinkClickedEventArgs e)
{
System.Diagnostics.Process.Start(e.LinkText);
}
private void button1_Click(object sender, EventArgs e)
{
Close();
}
}
}