PKHeX/PKHeX.WinForms/Misc/About.cs
Kurt 4ec60916c1 Minor refactoring for pkmeditor GUI
Cleans up some interactions to be a little more obvious
2021-07-30 18:05:17 -07:00

22 lines
555 B
C#

using System.Windows.Forms;
namespace PKHeX.WinForms
{
public partial class About : Form
{
public About(AboutPage index = AboutPage.Changelog)
{
InitializeComponent();
WinFormsUtil.TranslateInterface(this, Main.CurrentLanguage);
RTB_Changelog.Text = Properties.Resources.changelog;
RTB_Shortcuts.Text = Properties.Resources.shortcuts;
TC_About.SelectedIndex = (int)index;
}
}
public enum AboutPage
{
Shortcuts,
Changelog,
}
}