Binding and INotifyPropertyChanged

本文关键字:INotifyPropertyChanged and Binding | 更新日期: 2023-09-27 18:17:07

我试图使用INotifyPropertyChanged事件绑定TextBlock。但是它没有向TextBlock更新任何东西。TextBlock为空。我的目标是更新显示在不同行的项的状态。我需要根据状态更新TextBlock的文字和颜色。

谁能告诉我我的代码有什么问题?

public class ItemStatus : INotifyPropertyChanged
{
    string itemStatus;
    Brush itemStatusColor;
    public string ItemStatus
    {
        get { return itemStatus; }
        set
        {
            itemStatus = value;
            this.OnPropertyChanged("ItemStatus");
        }
    }
    public Brush ItemStatusColor
    {
        get { return itemStatusColor; }
        set
        {
            itemStatusColor = value;
            this.OnPropertyChanged("ItemStatusColor");
        }
    }
    public event PropertyChangedEventHandler PropertyChanged;
    void OnPropertyChanged(string propName)
    {
        if (this.PropertyChanged != null)
            this.PropertyChanged(
                this, new PropertyChangedEventArgs(propName));
    }
}
public class Items
{
    List<ItemStatus> currentItemStatus;
    public List<ItemStatus> CurrentItemStatus
    {
        get { return currentItemStatus; }
        set { currentItemStatus = value; }
    }
}
public partial class DisplayItemStatus : Page
{
    ....
    ....
    public DisplayItemStatus()
    {
        foreach (Product product in lstProductList)
        {
            TextBlock tbItemStatus = new TextBlock();
            ....
            Items objItems = new Items();
            Binding bindingText = new Binding();
            bindingText.Source = objItems;
            bindingText.UpdateSourceTrigger = UpdateSourceTrigger.PropertyChanged;
            bindingText.Path = new PropertyPath(String.Format("ItemStatus"));
            tbItemStatus.SetBinding(TextBlock.TextProperty, bindingText);
            Binding bindingColor = new Binding();
            bindingColor.Source = objItems;
            bindingColor.UpdateSourceTrigger = UpdateSourceTrigger.PropertyChanged;
            bindingColor.Path = new PropertyPath(String.Format("ItemStatusColor"));
            tbItemStatus.SetBinding(TextBlock.ForegroundProperty, bindingColor);
            grdItemsList.Children.Add(tbItemStatus);
        }
    }
    private void UpdateItems_Click(object sender, MouseButtonEventArgs e)
    {
        int intCount = 0;
        List<Product> ProductList = new List<Product>();
        List<ItemStatus> ItemList = new List<ItemStatus>();
        ProductList = GetProducts();
        foreach (Product product in ProductList)
        {
            intCount++;
            UpdateStatus(intCount, ItemList);
        }
    }
    public void UpdateStatus(int intIndex, List<ItemStatus> ItemList)
    {
        ItemStatus status = new ItemStatus();
        status.ItemStatus = strOperationStatus;
        status.ItemStatusColor = brshForegroundColor;
        ItemList.Add(status);
    }
}

Binding and INotifyPropertyChanged

这里的具体问题是你将TextBlock绑定到Item而不是ItemStatus。但你也在做一些困难的事情,你真的应该在XAML中做绑定细节。从你的视图模型中公开一个ItemStatus的集合,并有一个ListBox或其他东西,它的ItemsSource绑定到集合。然后你需要一个DataTemplate来定义TextBlock和ItemStatus的绑定。

这里有一个很好的概览