gpt4 book ai didi

wpf - 如何使用 INotifyPropertyChanged 更新数组绑定(bind)?

转载 作者:行者123 更新时间:2023-12-03 21:20:42 26 4
gpt4 key购买 nike

假设我有一个类:

class Foo
{
public string Bar
{
get { ... }
}

public string this[int index]
{
get { ... }
}
}

我可以使用“{Binding Path=Bar}”和“{Binding Path=[x]}”绑定(bind)到这两个属性。美好的。

现在假设我要实现 INotifyPropertyChanged:
class Foo : INotifyPropertyChanged
{
public string Bar
{
get { ... }
set
{
...

if( PropertyChanged != null )
{
PropertyChanged( this, new PropertyChangedEventArgs( "Bar" ) );
}
}
}

public string this[int index]
{
get { ... }
set
{
...

if( PropertyChanged != null )
{
PropertyChanged( this, new PropertyChangedEventArgs( "????" ) );
}
}
}

public event PropertyChangedEventHandler PropertyChanged;
}

标记的部分中有什么???? (我试过 string.Format("[{0}]", index) 但它不起作用)。这是 WPF 中的错误,是否有替代语法,或者仅仅是 INotifyPropertyChanged 不如普通绑定(bind)强大?

最佳答案

感谢 Cameron 的建议,我找到了正确的语法,即:

Item[]

它会更新绑定(bind)到该索引属性的所有内容(所有索引值)。

关于wpf - 如何使用 INotifyPropertyChanged 更新数组绑定(bind)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/90971/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com