2014-07-29 15:33:22 -07:00
|
|
|
|
using System;
|
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
|
2017-01-07 23:54:09 -08:00
|
|
|
|
namespace PKHeX.WinForms
|
2014-07-29 15:33:22 -07:00
|
|
|
|
{
|
|
|
|
|
public partial class About : Form
|
|
|
|
|
{
|
|
|
|
|
public About()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
2017-05-11 23:34:18 -05:00
|
|
|
|
RTB.Text = Properties.Resources.changelog;
|
2014-07-29 15:33:22 -07:00
|
|
|
|
}
|
|
|
|
|
private void B_Close_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2015-03-10 18:44:51 -07:00
|
|
|
|
Close();
|
2014-07-29 15:33:22 -07:00
|
|
|
|
}
|
2014-12-05 18:14:04 -08:00
|
|
|
|
private void B_Shortcuts_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (B_Shortcuts.Text == "Shortcuts")
|
|
|
|
|
{
|
2017-05-11 23:34:18 -05:00
|
|
|
|
RTB.Text = Properties.Resources.shortcuts; // display shortcuts
|
2014-12-05 18:14:04 -08:00
|
|
|
|
B_Shortcuts.Text = "Changelog";
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2017-05-11 23:34:18 -05:00
|
|
|
|
RTB.Text = Properties.Resources.changelog; // display changelog
|
2014-12-05 18:14:04 -08:00
|
|
|
|
B_Shortcuts.Text = "Shortcuts";
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-07-29 15:33:22 -07:00
|
|
|
|
}
|
|
|
|
|
}
|