2

我试图寻找答案,但我没有任何运气。基本上我有一个列表视图,它绑定到从视图模型返回的集合。我将列表视图的选定项目绑定到我的列表视图中的属性,以执行验证以确保选择了一个项目。问题是有时我想用已经选择的项目之一加载这个列表视图。我希望能够使用我想要选择的对象在我的视图模型上设置属性,并让它自动选择该项目。这没有发生。我的列表视图在没有选择项目的情况下加载。我可以成功地将选定的索引设置为第 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);
        }
    }

}

我应该注意,这里引用的“样式”与 WPF 无关。这是一个业务对象。我真的在寻找一种不会破坏 MVVM 模式的解决方案,但我愿意让一些功能正常运行。我试图遍历 Listview.Items 列表只是为了手动设置它,但当我尝试时它总是空的。任何帮助表示赞赏。

编辑:我更新了代码以使用 INotifyPropertyChanged。它仍然无法正常工作。任何其他建议第二次编辑:我添加了 UpdateSourceTrigger="PropertyChanged"。那仍然没有用。

谢谢

4

2 回答 2

3

您的问题很可能是由于您SelectedItem StyleStyle实例AvailableStylesItemsSource.

您需要做的是在您的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);
    }
}
于 2010-02-18T20:53:45.153 回答
0

嗯...看起来您忘记为该属性实现INotifyPropertyChanged ...SelectedStyle

于 2010-02-18T19:17:23.777 回答