mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 04:23:12 +00:00
71 lines
1.8 KiB
C#
71 lines
1.8 KiB
C#
using System;
|
|
using System.Windows.Forms;
|
|
using PKHeX.Core;
|
|
|
|
namespace PKHeX.WinForms.Controls
|
|
{
|
|
public partial class ContestStat : UserControl, IContestStats, IContestStatsMutable
|
|
{
|
|
public ContestStat()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public byte CNT_Cool
|
|
{
|
|
get => (byte)Util.ToInt32(TB_Cool.Text);
|
|
set => TB_Cool.Text = value.ToString();
|
|
}
|
|
|
|
public byte CNT_Beauty
|
|
{
|
|
get => (byte)Util.ToInt32(TB_Beauty.Text);
|
|
set => TB_Beauty.Text = value.ToString();
|
|
}
|
|
|
|
public byte CNT_Cute
|
|
{
|
|
get => (byte)Util.ToInt32(TB_Cute.Text);
|
|
set => TB_Cute.Text = value.ToString();
|
|
}
|
|
|
|
public byte CNT_Smart
|
|
{
|
|
get => (byte)Util.ToInt32(TB_Smart.Text);
|
|
set => TB_Smart.Text = value.ToString();
|
|
}
|
|
|
|
public byte CNT_Tough
|
|
{
|
|
get => (byte)Util.ToInt32(TB_Tough.Text);
|
|
set => TB_Tough.Text = value.ToString();
|
|
}
|
|
|
|
public byte CNT_Sheen
|
|
{
|
|
get => (byte)Util.ToInt32(TB_Sheen.Text);
|
|
set => TB_Sheen.Text = value.ToString();
|
|
}
|
|
|
|
private void Update255_MTB(object sender, EventArgs e)
|
|
{
|
|
if (sender is not MaskedTextBox tb) return;
|
|
if (Util.ToInt32(tb.Text) > byte.MaxValue)
|
|
tb.Text = "255";
|
|
}
|
|
|
|
public void ToggleInterface(object o, int gen = PKX.Generation)
|
|
{
|
|
if (o is not IContestStats)
|
|
{
|
|
Visible = false;
|
|
return;
|
|
}
|
|
|
|
Visible = true;
|
|
bool smart = gen < 6;
|
|
Label_Smart.Visible = smart; // show smart gen3-5
|
|
Label_Clever.Visible = !smart; // show clever gen6+
|
|
}
|
|
}
|
|
}
|