WPF绑定到具有类和子类的DataContext
本文关键字:子类 DataContext 绑定 WPF | 更新日期: 2023-09-27 17:59:24
我在wpf中玩数据绑定,遇到了一个问题。这是我的代码:
主窗口.xaml
<Window x:Class="TestWpf.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:TestWpf"
Title="MainWindow" Height="350" Width="525">
<StackPanel Name="stackpanel">
<TextBox Name="tb1" Text="{Binding Path=A.Number}" />
<TextBox Name="tb2" Text="{Binding Path=B.Number}" />
<TextBlock Name="tbResult" Text="{Binding Path=C}" />
</StackPanel>
</Window>
主窗口.xaml.cs
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
MyClass myClass = new MyClass();
myClass.A = new MySubClass();
myClass.B = new MySubClass();
stackpanel.DataContext = myClass;
}
}
MyClass.cs
class MyClass : INotifyPropertyChanged
{
private MySubClass a;
public MySubClass A
{
get { return a; }
set
{
a = value;
OnPropertyChanged("A");
OnPropertyChanged("C");
}
}
private MySubClass b;
public MySubClass B
{
get { return b; }
set
{
b = value;
OnPropertyChanged("B");
OnPropertyChanged("C");
}
}
public int C
{
get { return A.Number + B.Number; }
}
public event PropertyChangedEventHandler PropertyChanged;
private void OnPropertyChanged(string p)
{
if (PropertyChanged != null)
{
PropertyChanged(this, new PropertyChangedEventArgs(p));
}
}
}
MySubClass.cs
class MySubClass : INotifyPropertyChanged
{
private int number;
public int Number
{
get { return number; }
set
{
number = value;
OnPropertyChanged("Number");
}
}
public MySubClass()
{
Number = 1;
}
public event PropertyChangedEventHandler PropertyChanged;
private void OnPropertyChanged(string p)
{
if (PropertyChanged != null)
{
PropertyChanged(this, new PropertyChangedEventArgs(p));
}
}
}
现在,问题是,在我运行应用程序后,绑定工作正常。此外,当我在文本框中更改值A.编号和B.编号时,它们更新得很好。但MyClass.C中的变量C只有在应用程序启动时才会更新,之后再也不会更新。当我更改A.号码或B.号码时,我需要更改什么才能使C更新。谢谢。
在更新数据模型时,您是直接更改MySubClass实例上的Number,还是为MyClass实例分配新的子类?即:
myClass.A.Number = 5; // will trigger OnPropertyChanged on MySubClass, but not on MyClass
不会在A上触发OnPropertyChanged(但当然会更新A.Number)。要做到这一点,你必须做一些类似的事情:
MySubClass v = new MySubClass()
v.Number = 5;
myClass.A = v; // will trigger OnPropertyChanged on MyClass
更新答案。你可以这样做来捕捉a和b中的任何属性变化。
public MyClass()
{
a.PropertyChanged += new PropertyChangedEventHandler(UpdateC);
b.PropertyChanged += new PropertyChangedEventHandler(UpdateC);
}
void UpdateC(object sender, PropertyChangedEventArgs e)
{
OnPropertyChanged("C");
}
当我更改A.编号或B.编号时,我需要更改什么才能使C更新。
您需要侦听对A和B属性的更改。如果您将此代码添加到一个setter:中,它应该可以工作
set
{
if (a != null)
{
a.PropertyChanged-=NumberChanged;
}
a = value;
a.PropertyChanged+=NumberChanged;
OnPropertyChanged("A");
OnPropertyChanged("C");
}
private void NumberChanged(object sender, PropertyChangedEventArgs e)
{
if (e.PropertyName == "Number")
{
OnPropertyChanged("C");
}
}
B setter也是如此。