BindingExpression路径错误 - 'MyObjectsVM'上找不到'Color'属性

时间:2013-03-07 11:07:30

标签: c# binding

我已经检查了StackOverflow寻找答案,并在这里询问是我的最后一招,所以请不要downvote。我需要一个比数据库更有经验的人的意见: 这是我想要绑定的内容:

<Grid x:Name="all" Grid.Row="1">
    <TextBlock Text="all"  Foreground="{Binding Color}" x:Name="allTxt" Grid.Row="0" Padding="10,21,0,0" FontWeight="Light" FontSize="{StaticResource PhoneFontSizeExtraLarge}" Tap="TextBlock_Tap_1"  />
</Grid>

这就是我设置Grid组件的DataContext的方法

public Multiplication()
{
    InitializeComponent();
    this.all.DataContext = App.MyObjectsViewModel.allObjectsVisible;
}

这是MyObjectsViewModel的构造函数

public MyObjectsViewModel(DataContextManager manager)
{
    allObjectsVisible = new allVisibleBtn() { Allvisible = true, Color = "white" };
}

这是allObjectsVisible属性:

 private allVisibleBtn _allObjectsVisible;
 public allVisibleBtn allObjectsVisible
 {
    get { return _allObjectsVisible;}
    set { _allObjectsVisible= value; NotifyPropertyChanged("allObjectsVisible"); }
 }

最后这里是allObjectsBtn的类:

public class allVisibleBtn : BaseViewModel
    {
        private bool _Allvisible;
        public bool Allvisible
        {   get { return _Allvisible; }
            set { NotifyPropertyChanging("Allvisible"); _Allvisible = value; NotifyPropertyChanged("Allvisible"); }
        }

        private string _Color;
        public string Color
        {
            get { return _Color; }
            set { if (value != null) { NotifyPropertyChanging("Color"); _Color = value; } NotifyPropertyChanged("Color"); }
        }
    }

预期的行为是在有人点击它时改变文本块前景。 OFC在点击之后还有更多的事情要做,但从问题的角度来看没什么重要的。 所以请帮帮我,为什么我会收到以下错误:

`System.Windows.Data Error: BindingExpression path error: 'Color' property not found on 'Project.MyObjectsViewModel' 'Project.MyObjectsViewModel' (HashCode=50930930). BindingExpression: Path='Color' DataItem='Project.MyObjectsViewModel' (HashCode=50930930); target element is 'System.Windows.Controls.TextBlock' (Name='allTxt'); target property is 'Foreground' (type 'System.Windows.Media.Brush')..`

1 个答案:

答案 0 :(得分:0)

TextBlock的DataContext似乎是Project.MyObjectsViewModel的实例,并且该类型没有Color属性。因此,您需要将TextBlock的DataContext设置为allVisibleBtn的实例。尝试

<TextBlock DataContext="{Binding Path=allObjectsVisible}" ... />

完成后,您需要更改allVisibleBtn上Color属性的类型。 TextBlock的Foreground属性需要Brush,而不是字符串。