c# - 当项目更改时,WPF ListBox 不更新绑定(bind)项目的值

标签 c# wpf data-binding

在应用程序中,有一个绑定(bind)到 ObservableCollection 的列表框,然后所选项目本身绑定(bind)到一些标签:当标签中项目的属性发生更改时,实际对象(在本例中为多媒体)会更新(如我调试过),但列表框不会更新显示的值。

多媒体类实现了 INotifyPropertyChanged,但我不确定我是否正确使用它。

其他一切都正常工作,没有任何问题(添加按钮将新元素添加到列表中,并且按应有的方式显示)。

我在不同的论坛和 stackoverflow 上查看并尝试了不同的变体,但仍然是属性,更新时,它不会在列表框中更新。

这是 XMAL:

<Grid>
    <Grid.RowDefinitions>
        <RowDefinition Height="135" />
        <RowDefinition Height="*" />
        <RowDefinition Height="45" />
    </Grid.RowDefinitions>
    <ListBox Name="mediaListBox"  ItemsSource="{Binding Path=MyData}" Grid.Row="0"/>
    <Grid Grid.Row="1"  DataContext="{Binding ElementName=mediaListBox, Path=SelectedItem}">

        ...

        <TextBox Grid.Row="0" Grid.Column="1" Text="{Binding Path=Title}" />
        <TextBox Grid.Row="1" Grid.Column="1" Text="{Binding Path=Artist}" />
        <TextBox Grid.Row="2" Grid.Column="1" Text="{Binding Path=Genre}" />
        <TextBox Grid.Row="3" Grid.Column="1" Text="{Binding Path=Type}" />
    </Grid>
    <Button Name="cmdAddMedia" Grid.Row="1" Click="cmdAddMedia_Click" Height="45" Margin="0,0,0,2" Grid.RowSpan="2" VerticalAlignment="Bottom">Add Item</Button>
</Grid>

下面是主窗口的 C# 代码:

public partial class MainWindow : Window
{
    public MultiMediaList MyData { get; set; }
    public void AddStuff()
    {
        MyData.Add(new Multimedia() { Title = "My Way", Artist = "Calvin Harris", Genre = "Pop", Type = Multimedia.MediaType.CD });
        MyData.Add(new Multimedia() { Title = "Inglorious Bastards", Artist = "Quentin Tarantino", Genre = "Violence", Type = Multimedia.MediaType.DVD });
    }
    public MainWindow()
    {
        MyData = new MultiMediaList();
        AddStuff();
        InitializeComponent();
        DataContext = this;            
    }
...
}

最后是多媒体类和 MultiMediaList 类:

public class Multimedia : INotifyPropertyChanged
{
    public enum MediaType { CD, DVD };

    private string _title;
    private string _artist;
    private string _genre;
    private MediaType _type;

    public string Title
    {
        get { return _title; }
        set
        {
            _title = value;
            NotifyPropertyChanged("Title");
        }
    }
    ...
    public override string ToString()
    {
        return _title + " - " + _artist + " [" + _genre + "] - " + getTypeString();
    }

    private string getTypeString()
    {
       if(Type == MediaType.CD) { return "CD"; }
        else { return "DVD"; }
    }

    public event PropertyChangedEventHandler PropertyChanged;
    public void NotifyPropertyChanged(string name)
    {
        if (PropertyChanged != null)
        {
             PropertyChanged(this, new PropertyChangedEventArgs(name));
        }
    }
}

MultimediaList只是一个继承自ObservableCollection的空类

public class MultiMediaList: ObservableCollection<Multimedia>
{

}

如果您需要我也可以上传完整代码

希望你能帮助我并告诉我我做错了什么。

最佳答案

显然,您希望 ListBox 在其属性发生更改时自动调用多媒体对象的 ToString() 方法。事实并非如此。

不要依赖 ToString,而是为 ListBox 声明适当的 ItemTemplate:

<ListBox Name="mediaListBox" ItemsSource="{Binding MyData}" Grid.Row="0">
    <ListBox.ItemTemplate>
        <DataTemplate>
            <TextBlock>
                <Run Text="{Binding Title}"/>
                <Run Text="-"/>
                <Run Text="{Binding Artist}"/>
                <Run Text="["/><Run Text="{Binding Genre}"/><Run Text="]"/>
                <Run Text="{Binding Type}"/>
            </TextBlock>
        </DataTemplate>
    </ListBox.ItemTemplate>
</ListBox>

TextBlock 可能会写得更短:

<TextBlock>
    <Run Text="{Binding Title}"/> - <Run Text="{Binding Artist}"/> [<Run Text="{Binding Genre}"/>] <Run Text="{Binding Type}"/>
</TextBlock>

关于c# - 当项目更改时,WPF ListBox 不更新绑定(bind)项目的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53815667/

相关文章:

javascript - 数据绑定(bind)到 className winjs

c# - RestSharp Deserialize 返回空属性,但 xml.deserialize 测试有效

c# - 检查是否曾经创建过惰性单例

c# - ChromeDriver 选择多个单词类名称

c# - Java JPanel 与 WPF XAML 中的 GridLayout 等效

c# - 如何在 C# 中将数据源设置为 Datagridview 控件

c# - 从 C# 到非托管 C++ 库中执行 DllImport 时出现 MSBuild 4.0 依赖性问题

c# - 具有 Entity Framework 的 Wpf 应用程序无法在其他系统上运行。显示错误 50

c# - 捕获每个 WPF MediaElement 帧

wpf - WPF 有哪些绑定(bind)模式?