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