mirror of
https://github.com/seriocomedy/ShiftOS-C-.git
synced 2025-01-22 10:50:27 -05:00
66 lines
1.3 KiB
C#
66 lines
1.3 KiB
C#
|
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);
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
}
|