mirror of
https://github.com/kwsch/pk3DS.git
synced 2026-03-27 04:04:48 -05:00
24 lines
522 B
C#
24 lines
522 B
C#
using System.Windows.Forms;
|
|
|
|
namespace pk3DS.WinForms;
|
|
|
|
public static class FormUtil
|
|
{
|
|
// Utility (Shared)
|
|
internal static void SetForms(int species, ComboBox cb, string[][] AltForms)
|
|
{
|
|
cb.Items.Clear();
|
|
string[] forms = AltForms[species];
|
|
if (forms.Length < 2)
|
|
{
|
|
cb.Items.Add("");
|
|
cb.Enabled = false;
|
|
}
|
|
else
|
|
{
|
|
cb.Items.AddRange(forms);
|
|
cb.Enabled = true;
|
|
}
|
|
cb.SelectedIndex = 0;
|
|
}
|
|
} |