aboutsummaryrefslogtreecommitdiff
path: root/source/WindowsFormsApplication1/Controls/ShifterIntInput.cs
blob: 782d26593ec2cf1e04f7ada3b710aa94d6604a87 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace ShiftOS
{
    public partial class ShifterIntInput : IShifterSetting
    {
        public ShifterIntInput()
        {
            InitializeComponent();
        }

        public bool NoDecimal
        {
            get;
            set;
        }

        public override string Text
        {
            get { return Label51.Text; }
            set { Label51.Text = value; }
        }

        public override object Value
        {
            get {
                if (NoDecimal)
                    return Convert.ToInt32(txttext.Text);
                else
                    return Convert.ToDecimal(txttext.Text);
            }
            set
            {
                txttext.Text = value.ToString();
            }
        }

        private void txttext_TextChanged(object sender, EventArgs e)
        {
            try
            {
                if (NoDecimal)
                    Value = Convert.ToInt32(txttext.Text);
                else
                    Value = Convert.ToDecimal(txttext.Text);
                InvokeEvent(sender, e);
            }
            catch
            {
                txttext.Text = Value.ToString();
            }
        }
    }
}