2022-06-18 11:04:24 -07:00
|
|
|
using System.Windows.Forms;
|
2014-07-29 15:33:22 -07:00
|
|
|
|
2022-06-18 11:04:24 -07:00
|
|
|
namespace PKHeX.WinForms;
|
|
|
|
|
|
|
|
public partial class About : Form
|
2014-07-29 15:33:22 -07:00
|
|
|
{
|
2022-06-18 11:04:24 -07:00
|
|
|
public About(AboutPage index = AboutPage.Changelog)
|
2014-07-29 15:33:22 -07:00
|
|
|
{
|
2022-06-18 11:04:24 -07:00
|
|
|
InitializeComponent();
|
|
|
|
WinFormsUtil.TranslateInterface(this, Main.CurrentLanguage);
|
|
|
|
RTB_Changelog.Text = Properties.Resources.changelog;
|
|
|
|
RTB_Shortcuts.Text = Properties.Resources.shortcuts;
|
|
|
|
TC_About.SelectedIndex = (int)index;
|
2014-07-29 15:33:22 -07:00
|
|
|
}
|
2022-06-18 11:04:24 -07:00
|
|
|
}
|
2021-07-30 18:05:17 -07:00
|
|
|
|
2022-06-18 11:04:24 -07:00
|
|
|
public enum AboutPage
|
|
|
|
{
|
|
|
|
Shortcuts,
|
|
|
|
Changelog,
|
2014-07-29 15:33:22 -07:00
|
|
|
}
|