PKHeX/PKHeX.WinForms/Misc/About.cs
Kurt 2d472f11e6 Allow "About" form to be translated
use tabcontrol instead of toggling buttons
2018-07-21 10:35:01 -07:00

15 lines
392 B
C#

using System.Windows.Forms;
namespace PKHeX.WinForms
{
public partial class About : Form
{
public About()
{
InitializeComponent();
WinFormsUtil.TranslateInterface(this, Main.CurrentLanguage);
RTB_Changelog.Text = Properties.Resources.changelog;
RTB_Shortcuts.Text = Properties.Resources.shortcuts;
}
}
}