mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-01 00:09:14 +00:00
66 lines
1.7 KiB
C#
66 lines
1.7 KiB
C#
|
using System;
|
|||
|
using System.Windows.Forms;
|
|||
|
using PKHeX.Core;
|
|||
|
|
|||
|
namespace PKHeX.WinForms.Controls
|
|||
|
{
|
|||
|
public partial class ContestStat : UserControl
|
|||
|
{
|
|||
|
public ContestStat()
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
}
|
|||
|
|
|||
|
public int Sheen
|
|||
|
{
|
|||
|
get => Util.ToInt32(TB_Sheen.Text);
|
|||
|
set => TB_Sheen.Text = value.ToString();
|
|||
|
}
|
|||
|
public int Cool
|
|||
|
{
|
|||
|
get => Util.ToInt32(TB_Cool.Text);
|
|||
|
set => TB_Cool.Text = value.ToString();
|
|||
|
}
|
|||
|
public int Beauty
|
|||
|
{
|
|||
|
get => Util.ToInt32(TB_Beauty.Text);
|
|||
|
set => TB_Beauty.Text = value.ToString();
|
|||
|
}
|
|||
|
public int Cute
|
|||
|
{
|
|||
|
get => Util.ToInt32(TB_Cute.Text);
|
|||
|
set => TB_Cute.Text = value.ToString();
|
|||
|
}
|
|||
|
public int Smart
|
|||
|
{
|
|||
|
get => Util.ToInt32(TB_Smart.Text);
|
|||
|
set => TB_Smart.Text = value.ToString();
|
|||
|
}
|
|||
|
public int Tough
|
|||
|
{
|
|||
|
get => Util.ToInt32(TB_Tough.Text);
|
|||
|
set => TB_Tough.Text = value.ToString();
|
|||
|
}
|
|||
|
private void Update255_MTB(object sender, EventArgs e)
|
|||
|
{
|
|||
|
if (!(sender is MaskedTextBox tb)) return;
|
|||
|
if (Util.ToInt32(tb.Text) > byte.MaxValue)
|
|||
|
tb.Text = "255";
|
|||
|
}
|
|||
|
|
|||
|
public void ToggleInterface(int gen)
|
|||
|
{
|
|||
|
if (gen < 3)
|
|||
|
{
|
|||
|
Visible = false;
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
Visible = true;
|
|||
|
bool smart = gen < 6;
|
|||
|
Label_Smart.Visible = smart; // show smart gen3-5
|
|||
|
Label_Clever.Visible = !smart; // show clever gen6+
|
|||
|
}
|
|||
|
}
|
|||
|
}
|