PKHeX/PKHeX.WinForms/Misc/About.cs

17 lines
449 B
C#
Raw Normal View History

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