2017-04-02 20:42:42 +00:00
|
|
|
|
using System;
|
2018-02-05 20:12:42 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
2017-04-02 20:42:42 +00:00
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
using PKHeX.Core;
|
|
|
|
|
|
|
|
|
|
namespace PKHeX.WinForms
|
|
|
|
|
{
|
|
|
|
|
public partial class SAV_GameSelect : Form
|
|
|
|
|
{
|
|
|
|
|
public GameVersion Result = GameVersion.Invalid;
|
2018-08-04 17:06:06 +00:00
|
|
|
|
|
2018-02-05 20:12:42 +00:00
|
|
|
|
public SAV_GameSelect(IEnumerable<ComboItem> items)
|
2017-04-02 20:42:42 +00:00
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
2018-04-03 03:36:13 +00:00
|
|
|
|
WinFormsUtil.TranslateInterface(this, Main.CurrentLanguage);
|
2018-07-14 23:00:28 +00:00
|
|
|
|
CB_Game.InitializeBinding();
|
2018-02-05 15:48:47 +00:00
|
|
|
|
CB_Game.DataSource = new BindingSource(items.ToList(), null);
|
2017-04-02 20:42:42 +00:00
|
|
|
|
CB_Game.SelectedIndex = 0;
|
|
|
|
|
CB_Game.Focus();
|
|
|
|
|
}
|
2018-08-04 17:06:06 +00:00
|
|
|
|
|
2017-04-02 20:42:42 +00:00
|
|
|
|
private void B_Cancel_Click(object sender, EventArgs e) => Close();
|
2018-08-04 17:06:06 +00:00
|
|
|
|
|
2017-04-02 20:42:42 +00:00
|
|
|
|
private void B_OK_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2017-06-18 01:37:19 +00:00
|
|
|
|
Result = (GameVersion)WinFormsUtil.GetIndex(CB_Game);
|
2017-04-02 20:42:42 +00:00
|
|
|
|
Close();
|
|
|
|
|
}
|
2018-08-04 17:06:06 +00:00
|
|
|
|
|
2017-04-02 20:42:42 +00:00
|
|
|
|
private void SAV_GameSelect_KeyDown(object sender, KeyEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (e.KeyCode == Keys.Enter)
|
|
|
|
|
B_OK_Click(null, null);
|
|
|
|
|
if (e.KeyCode == Keys.Escape)
|
|
|
|
|
B_Cancel_Click(null, null);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|