我试图寻找答案,但我没有运气。基本上我有一个listview绑定到从视图模型返回的集合。我将列表视图的选定项绑定到listview中的属性,以便执行验证以确保选择项。问题是,有时我想用已选择的项目之一加载此列表视图。我希望能够使用我想要选择的对象在我的视图模型上设置属性,并让它自动选择该项目。这不会发生。我的列表视图加载时未选择任何项目。我可以成功地将所选索引设置为第0个索引,那么为什么我不能设置所选值。列表视图处于单选模式。
以下是我的列表视图中的相关代码
<ListView Name="listView1" ItemsSource="{Binding Path=AvailableStyles}" SelectionMode="Single">
<ListView.SelectedItem>
<Binding Path="SelectedStyle" ValidatesOnDataErrors="True" Mode="TwoWay" UpdateSourceTrigger="PropertyChanged" BindingGroupName="StyleBinding" >
</Binding>
</ListView.SelectedItem>
<ListView.View>
<GridView>
<GridViewColumn Header="StyleImage">
<GridViewColumn.CellTemplate>
<DataTemplate>
<Image Source="800.jpg"/>
</DataTemplate>
</GridViewColumn.CellTemplate>
</GridViewColumn>
<GridViewColumn Header="Style Code" DisplayMemberBinding="{Binding StyleCode}"/>
<GridViewColumn Header="Style Name" DisplayMemberBinding="{Binding StyleName}"/>
</GridView>
</ListView.View>
</ListView>
以下是我的视图模型中的相关代码
public class StyleChooserController : BaseController, IDataErrorInfo, INotifyPropertyChanged
{
private IList<Style> availableStyles;
private Style selectedStyle;
public IList<Style> AvailableStyles
{
get { return availableStyles; }
set
{
if (value == availableStyles)
return;
availableStyles = value;
OnPropertyChanged("AvailableStyles");
}
}
public Style SelectedStyle
{
get { return selectedStyle; }
set
{
//if (value == selectedStyle)
// return;
selectedStyle = value;
OnPropertyChanged("SelectedStyle");
}
}
public StyleChooserController()
{
AvailableStyles = StyleService.GetStyleByVenue(1);
if (ApplicationContext.CurrentStyle != null)
{
SelectedStyle = ApplicationContext.CurrentStyle;
}
}
public string Error
{
get { return null; }
}
public string this[string columnName]
{
get
{
string error = string.Empty;
if (columnName == "SelectedStyle")
{
if (SelectedStyle == null)
{
error = "required";
}
}
return error;
}
}
public event PropertyChangedEventHandler PropertyChanged;
protected virtual void OnPropertyChanged(string propertyName)
{
PropertyChangedEventHandler handler = this.PropertyChanged;
if (handler != null)
{
var e = new PropertyChangedEventArgs(propertyName);
handler(this, e);
}
}
}
我应该注意,这里引用的“Style”与WPF无关。这是一个商业对象。我真的在寻找一种不破坏MVVM模式的解决方案,但我愿意让一些功能正常运行。我试图遍历Listview.Items列表只是为了手动设置它,但是当我尝试时它总是空的。任何帮助表示赞赏。
编辑:我更新了代码以使用INotifyPropertyChanged。它仍然无法正常工作。任何其他建议 第2次编辑:我添加了UpdateSourceTrigger =“PropertyChanged”。那还是行不通的。
由于
答案 0 :(得分:3)
您的问题很可能是因为SelectedItem
Style
与Style
中的AvailableStyles
匹配的实例不同ItemsSource
。 / p>
您需要做的是在Style
班级中提供您的具体平等定义:
public class Style: IEquatable<Style>
{
public string StyleCode { get; set; }
public string StyleName { get; set; }
public virtual bool Equals(Style other)
{
return this.StyleCode == other.StyleCode;
}
public override bool Equals(object obj)
{
return Equals(obj as Style);
}
}
答案 1 :(得分:0)
嗯......看起来你忘了为SelectedStyle
财产实施INotifyPropertyChanged ......