1
0
mirror of synced 2024-11-12 02:00:50 +01:00
Switch-Toolbox/Switch_Toolbox_Library/Forms/Custom/STTextBox.cs

55 lines
1.4 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Toolbox.Library.Forms
{
public class STTextBox : TextBox
{
public STTextBox()
{
BackColor = FormThemes.BaseTheme.TextEditorBackColor;
ForeColor = FormThemes.BaseTheme.TextForeColor;
BorderStyle = BorderStyle.FixedSingle;
InitializeComponent();
}
/// <summary>
/// Binds a property from the given object to the textbox
/// </summary>
/// <param name="Object"></param>
/// <param name="PropertyName"></param>
/// <param name="ResetBindings"></param>
public void Bind(object Object, string PropertyName, bool ResetBindings = true)
{
if (ResetBindings)
DataBindings.Clear();
DataBindings.Add("Text", Object, PropertyName);
}
private void InitializeComponent()
{
this.SuspendLayout();
//
// STTextBox
//
this.TextChanged += new System.EventHandler(this.STTextBox_TextChanged);
this.ResumeLayout(false);
}
private void STTextBox_TextChanged(object sender, EventArgs e)
{
foreach (Binding data in DataBindings)
{
data.WriteValue();
}
}
}
}