PropertyChangedEventHandler PropertyChanged为null

时间:2010-08-30 14:18:38

标签: binding silverlight-4.0 inotifypropertychanged propertychanged

我正在实现PropertyChangedEventHandler PropertyChanged并且它始终为null。 属性字符串是对的donno问题出在哪里 这是我正在使用的代码

public event PropertyChangedEventHandler PropertyChanged;
        protected virtual void OnPropertyChanged(string propertyName)
        {
            PropertyChangedEventHandler handler = PropertyChanged;
            if (handler != null)
            {
                handler(this, new PropertyChangedEventArgs(propertyName));
            }
        }

public bool _playerGridVisibility ;
        public bool PlayerGridVisibility
        {
            get { return _playerGridVisibility; }
            set
            {
                _playerGridVisibility = value;
                this.OnPropertyChanged(Strings.PlayerGridVisibilityString);
            }

和xaml

Visibility="{Binding Path=AdsGridVisibility, Converter={StaticResource VC}}"
        }

所以有人都知道这个问题吗?

1 个答案:

答案 0 :(得分:4)

这可能发生的一个原因是,如果您的代码不处理原始数据上下文。您可能有两个视图模型副本,您可能正在更新未绑定的模型。