PKHeX/PKHeX.WinForms/Misc/About.cs
2018-11-16 17:38:09 -08:00

16 lines
449 B
C#

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