- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 WPF View
绑定(bind)到 ViewModel
实现 INotifyPropertyChanged
.在那View
, 我有一个 DataGrid
,其项目绑定(bind)到 ObservableCollection
在 ViewModel
. ObservableCollection
成员自己不执行INotifyPropertyChanged
.在 DataGrid
我有三列 - 两列可编辑 DatePicker
列和只读 Checkbox
当用户选择包含当前日期的日期范围时,应检查该列。
首次加载 View 时绑定(bind)工作,但 Checkbox
的绑定(bind)当我更改其他两列中的日期时没有更新,大概是因为类 MyDomainObject
未实现 INotifyPropertyChanged
.我真的不想在这里实现那个接口(interface),因为 ObservableCollection
是从 Web 服务返回的类型,这样做会迫使我创建和维护该类型的副本,并且我的应用程序中有很多类似的场景。有什么办法可以强制复选框更新?如果可能的话,我非常希望避免使用后面的代码——如果我必须打破这条规则,我知道该怎么做。
以下代码应大致说明问题:
XAML:
<DataGrid ItemsSource="{Binding MyDomainObjectCollection}">
<DataGrid.Columns>
<DataGridTemplateColumn Header="Start Date">
<DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<TextBlock Text="{Binding StartDate, StringFormat=d}" />
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
<DataGridTemplateColumn.CellEditingTemplate>
<DataTemplate>
<DatePicker SelectedDate="{Binding StartDate, UpdateSourceTrigger=PropertyChanged}" />
</DataTemplate>
</DataGridTemplateColumn.CellEditingTemplate>
</DataGridTemplateColumn>
<DataGridTemplateColumn Header="End Date">
<DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<TextBlock Text="{Binding EndDate, StringFormat=d}" />
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
<DataGridTemplateColumn.CellEditingTemplate>
<DataTemplate>
<DatePicker SelectedDate="{Binding EndDate, UpdateSourceTrigger=PropertyChanged}" />
</DataTemplate>
</DataGridTemplateColumn.CellEditingTemplate>
</DataGridTemplateColumn>
<DataGridTemplateColumn Header="Is Active">
<DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<CheckBox IsChecked="{Binding IsActive, Mode=OneWay}" IsEnabled="False" />
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
</DataGridTemplateColumn>
</DataGrid.Columns>
</DataGrid>
public class MyViewModel : INotifyPropertyChanged {
ObservableCollection<MyDomainObject> _myDomainObjectCollection;
public ObservableCollection<MyDomainObject> MyDomainObjectCollection {
get { return this._myDomainObjectCollection; }
set { this._myDomainObjectCollection = value; this.OnPropertyChanged(); }
}
[...]
}
public class MyDomainObject {
public DateTime StartDate { get; set; }
public DateTime EndDate { get; set; }
public bool IsActive {
get { return StartDate < DateTime.Now && EndDate > DateTime.Now; }
}
}
最佳答案
如果您不想实现 INotifyPropertyChanged
域对象上的接口(interface),您可以使用与您的 DomainObject 具有相同接口(interface)并实现 INotifyPropertyChanged 的 ViewModel 包装您的 DomainObject
public class MyDomainObjectViewModel : INotifyPropertyChanged {
private MyDomainObject _domainObject;
public MyDomainObjectViewModel(MyDomainObject domainObject){
_domainObject = domainObject;
}
public DateTime StartDate {
get{
return _domainObject.StartDate;
}
set{
_domainObject.StartDate = value;
RaisePropertyChanged("StartDate");
RaisePropertyChanged("IsActive");
}
}
public DateTime EndDate {
get{
return _domainObject.EndDate ;
}
set{
_domainObject.EndDate = value;
RaisePropertyChanged("EndDate");
RaisePropertyChanged("IsActive");
}
}
public bool IsActive {
get { return StartDate < DateTime.Now && EndDate > DateTime.Now; }
}
}
ObservableCollection<MyDomainObjectViewModel>
类型.
关于c# - 在没有 INotifyPropertyChanged 的情况下更新 ObservableCollection 成员属性的绑定(bind),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29340139/
这是一个有趣的案例,我无法在网上找到任何信息。我正在尝试创建一个网格,需要将 ObservableCollection 的 ObservableCollection 绑定(bind)到它。想象这样一个
如何复制ObservableCollection项目到另一个 ObservableCollection没有引用第一个集合?这里ObservableCollection影响两个集合的项目值更改。 代码
public class Alpha { public ObservableCollection Items { get; set; } public Alpha() {
我只是想知道如何拥有父集合的子集合? 例如, 我已经有一个 ObservableCollection 产品,它正在添加并正确绑定(bind)到 XAML。但是,现在我需要另一个包含产品项目的 Obse
我对 Silverlight 体验相对较新,我正在尝试创建一个带有 DomainService 的 MVVM 应用程序,该应用程序将 POCO 作为模型返回。我有一个 UserControl,它有一个
查看 Microsoft 站点上的 Windows 运行时引用,我能找到的唯一相关集合是 IObservableVector 。 .NET Projection ObservableCollectio
我正在尝试获取值“thisValueIwant”。有没有可能如此容易地获得这个值(value)?或者也许这两个 ObservableCollection 有另一种解决方案 public class F
我有一个 ObserveableCollection,其中包含另一个 ObserveableCollection。在我的 WPF 中,我设置了对 Persons.Lectures 的绑定(bind)。
我有一个包含 20 个项目(图像)和按钮(“下一个”)的 observablecollection。我如何获得像 observablecollection.next() 和 observablecol
我有一个 ObservableCollection . T 有一个 ToString() 方法。我想做的是转换 ObservableCollection至 ObservableCollection .
我有一个 DataGrid,它绑定(bind)到 ViewModel 中的一个 ObservableCollection。这是一个搜索结果DataGrid。问题是,在我更新搜索结果 Observabl
有一堆ObservableCollection Result并要求将它们全部组合成另一个 ObservableCollection AllResults所以我可以在 listview 中显示它. 只是
哪个是保存我的数据的更好解决方案,还是取决于某些条件? 示例情况 1: 您需要显示一个数据列表,选择后可以在新窗口中修改。 示例情况 2: 您需要显示可以在此列表中修改的数据列表。 最佳答案 当您使用
从 xml 中执行 ViewModel 的最佳方法是什么:
所以我有一个 BaseClass 以及继承自基类的几个子类 ChildClass1 ChildClass2 我有ObservableCollections需要就地排序的子类,我无法创建新的 Obser
我为 ObservableCollection 构建了一个简单的扩展方法 AddRange: using System; using System.Collections.Generic; using
我的情况是,我有“tablegenerateModel”类的 ObservableCollection,该类进一步包含“column_Data”类的 ObservableCollection,并且这个
我将有一个 7 个小“购物 list ”,然后是一个包含 7 个小 list 中所有项目的大 list 。 是否可以使用 databind 和 observablecollection,以便从小列表中
当所述 ObservableCollection 从 View 模型公开时,我无法找到正确的绑定(bind)语法来绑定(bind) ObservableCollection 中包含的项目的属性。 当我
我有以下类(class),效果很好 public class RemoteSource { ObservableCollection remote; string[] _servers
我是一名优秀的程序员,十分优秀!