mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 08:47:14 +00:00
4ec60916c1
Cleans up some interactions to be a little more obvious
22 lines
555 B
C#
22 lines
555 B
C#
using System.Windows.Forms;
|
|
|
|
namespace PKHeX.WinForms
|
|
{
|
|
public partial class About : Form
|
|
{
|
|
public About(AboutPage index = AboutPage.Changelog)
|
|
{
|
|
InitializeComponent();
|
|
WinFormsUtil.TranslateInterface(this, Main.CurrentLanguage);
|
|
RTB_Changelog.Text = Properties.Resources.changelog;
|
|
RTB_Shortcuts.Text = Properties.Resources.shortcuts;
|
|
TC_About.SelectedIndex = (int)index;
|
|
}
|
|
}
|
|
|
|
public enum AboutPage
|
|
{
|
|
Shortcuts,
|
|
Changelog,
|
|
}
|
|
}
|