mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-17 09:38:05 +00:00
bf7cd278cc
Refactoring complete (for now).
31 lines
818 B
C#
31 lines
818 B
C#
using System;
|
|
using System.Windows.Forms;
|
|
|
|
namespace PKHeX
|
|
{
|
|
public partial class About : Form
|
|
{
|
|
public About()
|
|
{
|
|
InitializeComponent();
|
|
RTB.Text = Properties.Resources.changelog;
|
|
}
|
|
private void B_Close_Click(object sender, EventArgs e)
|
|
{
|
|
Close();
|
|
}
|
|
private void B_Shortcuts_Click(object sender, EventArgs e)
|
|
{
|
|
if (B_Shortcuts.Text == "Shortcuts")
|
|
{
|
|
RTB.Text = Properties.Resources.shortcuts; // display shortcuts
|
|
B_Shortcuts.Text = "Changelog";
|
|
}
|
|
else
|
|
{
|
|
RTB.Text = Properties.Resources.changelog; // display changelog
|
|
B_Shortcuts.Text = "Shortcuts";
|
|
}
|
|
}
|
|
}
|
|
}
|