mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
2d472f11e6
use tabcontrol instead of toggling buttons
15 lines
392 B
C#
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;
|
|
}
|
|
}
|
|
}
|