如何将WPF控件绑定到类方法的结果
本文关键字:类方法 结果 绑定 控件 WPF | 更新日期: 2023-09-27 18:04:51
我试图通过ViewModew将ListBox ItemSource绑定到类方法的结果。这是我的类方法:
class MyDataProvider
{
public SearchResult DoSearch(string searchTerm)
{
return new SearchResult
{
SearchTerm = searchTerm,
Results = dict.Where(item => item.Value.ToUpperInvariant().Contains(searchTerm.ToUpperInvariant())).ToDictionary(v => v.Key, v => v.Value)
};
}
}
(dict只是一个字符串的字典集合)
我有一个文本框和一个列表框。我需要在列表框上显示使用文本框文本作为searchTerm参数从myDataProvider返回的serachResult。我怎么做ViewModel?谢谢!
你的类应该实现INotifyPropertyChanged接口。正如Rohin Vats所说,你应该创建一个属性来保存结果值。
private SearchResult _myBindableProperty;
public SearchResult MyBindableProperty
{
get { return _myBindableProperty; }
set
{
if(_myBindableProperty == value)
return;
_myBindableProperty = value;
RaisePropertyChanged("MyBindableProperty");
}
}
和DoSearch方法
public void DoSearch(string searchTerm)
{
MyBindableProperty = new SearchResult
{
SearchTerm = searchTerm,
Results = dict.Where(item => iteem.Value.ToUpperInvariant().Contains(searchTerm.ToUpperInvariant())).ToDictionary(v => v.Key, v => v.Value)
};
}