forked from MikeG621/YOGEME
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAboutDialog.cs
40 lines (34 loc) · 1.06 KB
/
AboutDialog.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*
* YOGEME.exe, All-in-one Mission Editor for the X-wing series, TIE through XWA
* Copyright (C) 2007-2014 Michael Gaisser (mjgaisser@gmail.com)
* Licensed under the MPL v2.0 or later
*
* VERSION: 1.2.3
*/
/* CHANGELOG
* v1.2.3, 141214
* [UPD] change to MPL
* v1.1.1, 120814
* - class renamed
* v1.0, 110921
* - Release
*/
using System.Windows.Forms;
namespace Idmr.Yogeme
{
/// <summary>Dialog to display program information</summary>
public partial class AboutDialog : Form
{
public AboutDialog()
{
InitializeComponent();
lblVersion.Text += Application.ProductVersion;
Height = 218;
}
void cmdClose_Click(object sender, System.EventArgs e) { Close(); }
void lnkGE_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { Common.LaunchER(); }
void lnkIdmr_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { Common.LaunchIdmr(); }
void lnkMail_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { Common.EmailJagged(); }
void pctBanner_Click(object sender, System.EventArgs e) { Common.LaunchIdmr(); }
}
}