mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-12-02 09:19:20 +00:00
25 lines
588 B
C#
25 lines
588 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using System.Windows.Forms;
|
|||
|
using System.Drawing;
|
|||
|
|
|||
|
namespace Switch_Toolbox.Library.Forms
|
|||
|
{
|
|||
|
public class NumericUpDownFloat : STNumbericUpDown
|
|||
|
{
|
|||
|
public NumericUpDownFloat()
|
|||
|
{
|
|||
|
BackColor = FormThemes.BaseTheme.FormBackColor;
|
|||
|
ForeColor = FormThemes.BaseTheme.FormForeColor;
|
|||
|
|
|||
|
Maximum = 1000000000;
|
|||
|
Minimum = -100000000;
|
|||
|
DecimalPlaces = 5;
|
|||
|
Increment = 0.005m;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|