mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 17:18:00 +00:00
16 lines
449 B
C#
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;
|
|
}
|
|
}
|
|
}
|