aboutsummaryrefslogtreecommitdiff
path: root/source/WindowsFormsApplication1/Controls/ShifterTextInput.cs
blob: 6e59649ae140ce06f8da57a8386ae19c5ae144b5 (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
63
64
65
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 ShifterTextInput : IShifterSetting
    {
        public ShifterTextInput()
        {
            InitializeComponent();
            txttext.TextChanged += (o, e) =>
            {
                Value = txttext.Text;
                InvokeEvent(o, e);
            };
        }

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

        public override object Value
        {
            get
            {
                return txttext.Text;
            }
            set
            {
                txttext.Text = value as string;
            }
        }


        
    }

    public class IShifterSetting : UserControl
    {
        public virtual string Text { get; set; }
        public virtual object Value { get; set; }
        public event EventHandler OnValueChange;

        public void InvokeEvent(object s, EventArgs a)
        {
            OnValueChange?.Invoke(s, a);
        }
    }

}