作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我遇到了数据绑定(bind)/ View 刷新问题。当我的 Worklist 类的 TotalTaskCount 属性发生更改时,因为它没有反射(reflect)在我的 View 中( View 仍然在列中显示旧值)。
我的数据结构类似于:
包含数据网格的 View 将其 ItemSource 属性绑定(bind)到 View 模型中的属性,如下所示:
<DataContext="{Binding DashBoardVM, Source={StaticResource Locator}}"/>
<DataGrid ItemsSource="{Binding SelectedTeamToManage.Worklists}"
AutoGenerateColumns = "true"/>
public class DashBoardViewModel
{
Observable Collection <Worklist> TeamWorklists = new ObservableCollection <Worklist>();
//Bound to ItemSource of the datagrid
public TeamWorkload SelectedTeamToManage
{
get { return _selectedTeamToManage; }
set
{
_selectedTeamToManage = value;
RaisePropertyChanged("SelectedTeamToManage");
}
}
}
public class TeamWorkload
{
public string TeamName
{
get { return _teamName; }
set { _teamName = value; }
}
public ObservableCollection<Worklist> WorkLists
{
get { return _teamWorkLists; }
set
{
_teamWorkLists = value;
}
}
}
public Class Worklist
{
public event PropertyChangedEventHandler PropertyChanged;
[DisplayName("Total Tasks Count")]
public int TotalTasksCount
{
get { return _totalTasksCount; }
set
{
_totalTasksCount = value;
NotifyPropertyChanged("TotalTasksCount");
}
}
private void NotifyPropertyChanged(string info)
{
var propChanged = PropertyChanged;
if (propChanged != null)
{
propChanged(this, new PropertyChangedEventArgs(info));
}
}
}
最佳答案
声明 PropertyChanged
事件与实际实现 INotifyPropertyChanged
不同。界面。
改变
public class Worklist
{
public event PropertyChangedEventHandler PropertyChanged;
...
}
public class Worklist : INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
...
}
public class ViewModelBase : INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
protected void NotifyPropertyChanged([CallerMemberName] string propertyName = null)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
}
关于c# - 如何将子对象实例中的属性更改传达给 View ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42562158/
我是一名优秀的程序员,十分优秀!