MVVM WPF ListBox条目未更新

时间:2015-04-23 08:06:37

标签: c# wpf mvvm listbox observablecollection

我最近开始学习MVVM模式并创建了一个简单的应用程序来测试一些东西。

我有一个简单的视图:

  • ListBox持有项目的ObservableCollection
  • 删除按钮
  • 新按钮
  • 项目描述的文本框
  • 项目值的文本框

除了事实之外,如果我正在更新项目描述,则ListBox条目不会更新。我读了一些关于这个的文章,所以我认为它与CollectionChanged有关。我尝试了一些可能解决这个问题的方法,但没有一个能够解决。所以我的方法可能存在一些错误。

希望有人可以帮我解决这个问题。

型号/ Item.cs

dd(\Hash::check($request->password, $user->password))

视图模型/ MainViewModel.cs

internal class Item : INotifyPropertyChanged
{

    #region Fields 
    private string value;
    private string description;
    #endregion

    #region Constructors
    public Item()
    {
    }

    public Item(string value, string description) {
        this.description = description;
        this.value = value;
    }
    #endregion 

    public String Value
    {
        get
        {
            return value;
        }
        set
        {
            this.value = value;
            OnPropertyChanged("Value");
        }
    }

    public String Description
    {
        get
        {
            return description;
        }
        set
        {
            description = value;
            OnPropertyChanged("Description");
        }
    }

    #region Overrides
    public override string ToString()
    {
        return description;
    }
    #endregion String Override

    #region INotifyPropertyChanged Members
    public event PropertyChangedEventHandler PropertyChanged;

    private void OnPropertyChanged(string propertyName)
    {
        PropertyChangedEventHandler handler = PropertyChanged;

        if (handler != null)
        {
            handler(this, new PropertyChangedEventArgs(propertyName));
        }

    }
    #endregion

}

查看/ MainWindow.xaml

...

private ObservableCollection<Item> items;
private Item selectedItem;

public ObservableCollection<Item> Items {
    get
    {
        return items;
    }
    set
    {
        items = value;
        OnPropertyChanged("Items");
    }
}
public Item SelectedItem {
    get
    {
        return selectedItem;
    }
    set
    {
        selectedItem = value;
        OnPropertyChanged("SelectedItem");
    }
}

...

2 个答案:

答案 0 :(得分:2)

使用此ItemTemplate它应该可以工作

    <ListBox Grid.Row="4" Grid.Column="0" Grid.ColumnSpan="2" ItemsSource="{Binding Items}" SelectedItem="{Binding SelectedItem}" >
        <ListBox.ItemTemplate>
            <DataTemplate>
                <StackPanel Orientation="Horizontal">
                    <TextBlock Text="{Binding Path=Value}" Margin="0,0,10,0/>
                    <TextBlock Text="{Binding Path=Description}" />
                </StackPanel>
            </DataTemplate>
        </ListBox.ItemTemplate>
    </ListBox>

答案 1 :(得分:0)

如何在模型类中生成PropertyChangedEvent?

试试这个:

internal class Range : INotifyPropertyChanged
{
    private string _value;

    public string Value
    {
        get { return _value; }
        set 
        {
            if (_value == value) return;
            _value = value;
            OnPropertyChanged("Value");
        }
    }
    //Do same for the Description property
    //Do not forgot implement INotifyPropertyChanged interface here
}

我希望这可以帮到你

哦!更新后很明显。您不对列表框项使用任何datatemplate,因此WPF为没有DT的show项调用ToString()方法。但是当您更新任何属性时,WPF不知道这一点,因为对象不会更改。 使用Datatemplate或尝试使用空字符串调用OnPropertyChanged。