0

我已经检查了 StackOverflow 以寻找答案,在这里问是我最后的手段,所以请不要投反对票。我需要比我更有经验的数据绑定的人的意见:这是我要绑定的内容:

<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')..`
4

1 回答 1

0

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

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

一旦你开始工作,你需要改变 Color 属性的类型allVisibleBtn。TextBlock 的 Foreground 属性需要一个 Brush,而不是字符串。

于 2013-03-07T11:17:38.067 回答