2022-06-18 18:04:24 +00:00
|
|
|
using System.Windows.Forms;
|
2014-07-29 22:33:22 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
namespace PKHeX.WinForms;
|
|
|
|
|
|
|
|
public partial class About : Form
|
2014-07-29 22:33:22 +00:00
|
|
|
{
|
2022-06-18 18:04:24 +00:00
|
|
|
public About(AboutPage index = AboutPage.Changelog)
|
2014-07-29 22:33:22 +00:00
|
|
|
{
|
2022-06-18 18:04:24 +00: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 22:33:22 +00:00
|
|
|
}
|
2022-06-18 18:04:24 +00:00
|
|
|
}
|
2021-07-31 01:05:17 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
public enum AboutPage
|
|
|
|
{
|
|
|
|
Shortcuts,
|
|
|
|
Changelog,
|
2014-07-29 22:33:22 +00:00
|
|
|
}
|