GameLauncher/PS2ModLauncher/AboutBox1.cs
2015-08-14 13:18:12 -04:00

36 lines
893 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.Windows.Forms;
namespace PSLauncher
{
partial class About : Form
{
public About()
{
InitializeComponent();
System.Reflection.Assembly assembly = System.Reflection.Assembly.GetExecutingAssembly();
FileVersionInfo fvi = FileVersionInfo.GetVersionInfo(assembly.Location);
string version = fvi.FileVersion;
appVersion.Text = "Version " + version;
}
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start(linkLabel1.Text);
}
private void label2_Click(object sender, EventArgs e)
{
}
}
}