2012-03-03 18:04:11 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Data;
|
|
|
|
|
using System.Drawing;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
|
2013-11-03 12:28:33 +00:00
|
|
|
|
namespace BizHawk.Client.DiscoHawk
|
2012-03-03 18:04:11 +00:00
|
|
|
|
{
|
|
|
|
|
public partial class About : Form
|
|
|
|
|
{
|
|
|
|
|
public About()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
2019-03-20 04:29:38 +00:00
|
|
|
|
lblVersion.Text = $"v{System.Reflection.Assembly.GetExecutingAssembly().GetName().Version}";
|
2012-03-03 18:04:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void richTextBox1_LinkClicked(object sender, LinkClickedEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
System.Diagnostics.Process.Start(e.LinkText);
|
|
|
|
|
}
|
2013-11-03 13:19:36 +00:00
|
|
|
|
|
|
|
|
|
private void button1_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
Close();
|
|
|
|
|
}
|
2012-03-03 18:04:11 +00:00
|
|
|
|
}
|
|
|
|
|
}
|