与内部元素的WPF数据绑定
本文关键字:WPF 数据绑定 元素 内部 | 更新日期: 2023-09-27 18:16:48
我想将我的StackPanel组件绑定到一个对象,并将其属性绑定到StackPanel元素
<StackPanel Grid.Column="0" Grid.Row="0" Name="device1" Background="#CC119EDA" DataContext="{Binding}">
<Label FontSize="22" Foreground="White">Desk #1</Label>
<TextBox Text="{Binding Name}" />
</StackPanel>
后面的代码device1.DataContext = new Class { Name = "Name" };
这个绑定有什么问题?由于
您可以这样尝试。当你为对象设置属性时,UI线程不知道这个变化,所以你需要实现RaisePropertyChange机制。使用MvvmLight工具包是一个很大的优势。这里,窗口数据上下文被设置为可以继承所有元素。
public partial class MainWindow : Window, INotifyPropertyChanged
{
private string _name;
public string MyName
{
get { return _name; }
set
{
_name = value;
OnPropertyChanged("MyName");
}
}
public MainWindow()
{
InitializeComponent();
MyName = "Eldho";
this.DataContext = this;
}
public event PropertyChangedEventHandler PropertyChanged;
protected virtual void OnPropertyChanged(string propertyName)
{
PropertyChangedEventHandler handler = PropertyChanged;
if (handler != null) handler(this, new PropertyChangedEventArgs(propertyName));
}
}
Xaml
<StackPanel>
<Label>Hi,</Label>
<TextBox Text="{Binding MyName}"/>
</StackPanel>