在C#中實現簡單的數據綁定,通常需要以下幾個步驟:
INotifyPropertyChanged
接口,以便在屬性值更改時通知UI。using System.ComponentModel;
public class Person : INotifyPropertyChanged
{
private string _name;
public string Name
{
get { return _name; }
set
{
_name = value;
OnPropertyChanged("Name");
}
}
public event PropertyChangedEventHandler PropertyChanged;
protected void OnPropertyChanged(string propertyName)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
}
using System.Windows.Forms;
public partial class MainForm : Form
{
public MainForm()
{
InitializeComponent();
// 創建一個TextBox控件
TextBox nameTextBox = new TextBox();
this.Controls.Add(nameTextBox);
}
}
Binding
對象并將其添加到UI元素的DataBindings
集合中來實現。using System.Windows.Forms;
public partial class MainForm : Form
{
private Person _person;
public MainForm()
{
InitializeComponent();
// 創建一個Person實例作為數據源
_person = new Person { Name = "John Doe" };
// 創建一個TextBox控件
TextBox nameTextBox = new TextBox();
this.Controls.Add(nameTextBox);
// 創建一個Binding對象,將TextBox的Text屬性綁定到Person的Name屬性
Binding nameBinding = new Binding("Text", _person, "Name");
nameTextBox.DataBindings.Add(nameBinding);
}
}
現在,當你運行程序時,文本框將顯示Person
對象的Name
屬性值。當你在文本框中更改值時,Person
對象的Name
屬性也會相應地更新。這就是在C#中實現簡單數據綁定的方法。