1

有人可以告诉我这个源代码有什么问题吗?当我单击按钮时,它不更新 ist 值?起初绑定转换器使他的工作。

源代码非常大,所以我只会发布一些片段。

XAML:实例是 ObservableCollection 的类型

<ListBox Name="Instances">
    <ListBox.ItemTemplate>
        <DataTemplate>
            <Button Tag="{Binding Path=Instance.Name}" Content="{Binding Path=Instance.Active, Converter={StaticResource BTSC}}" Click="ChangeAccess"/>
            <TextBlock Text="{Binding Path=Instance.Name}"/>
         </DataTemplate>
    </ListBox.ItemTemplate>
</ListBox>

转换器:

public class BoolToStringConverter : IValueConverter
{
    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
    {
        if (((Boolean)value) == true)
            return "No";
        else
            return "Yes";
    }

    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
    {
        throw new NotImplementedException();
    }
} 

事件:

private void ChangeAccess(object sender, RoutedEventArgs e)
{
    for...
    if ((sender as Button).Tag.ToString() == (DP.Instances[i].Instance as CInstance).Name)
    {
        SkipIfAndElse...
        DP.Instances[i].Instance.Active = true;
    }
}

实例:

class CInstance : INotifyPropertyChanged
{
    private Boolean active;
    public Boolean Active
    {
        get { return active; }
        set
        {
            active = value;
            NotifyPropertyChanged("Access");
        }
    }
}

CInstance 类的所有其他值都按预期更新。

4

2 回答 2

3

在您的 CInstance 类中

NotifyPropertyChanged("Access");

应该

NotifyPropertyChanged("Active");
于 2013-02-06T01:19:53.990 回答
1

我建议你开始使用某种 INPC 框架。我个人喜欢 Simon Cropp 的Fody。Fody 添加了适当的 OnNotifyPropertyChanged 作为编译后步骤,这意味着您不会像使用基于表达式的解决方案那样获得运行时命中。

归根结底,基于字符串的 OnNotifyPropertyChanged 都非常脆弱。

于 2013-02-06T03:17:23.383 回答