Привязка UIElement к локальным данным - PullRequest
0 голосов
/ 12 декабря 2011

У меня есть класс "BoolValue", в котором я объявляю значение bool и преобразую его в свойство зависимости (надеюсь, я сделал это правильно). Теперь в xaml, где у меня есть флажок, требуется установить или снять флажок в зависимости от значения bool.Я связываю весь код, ребята, пожалуйста, помогите.

<StackPanel Height="287" HorizontalAlignment="Left" Margin="78,65,0,0" Name="stackPanel1" VerticalAlignment="Top" Width="309" DataContext="xyz" >
  <CheckBox Content="" Height="71" Name="checkBox1" IsChecked="{Binding Path=IsCkecked, Mode=TwoWay}"/>
</StackPanel>

А вот класс

public class BoolValue : INotifyPropertyChanged
    {        
        private bool _isCkecked;

        public bool IsCkecked
        {
            get { return _isCkecked; }
            set
            {
                if (value == _isCkecked)
                    return;

                _isCkecked = value;
                RaisePropertyChanged("IsCkecked");
            }
        }

        public event PropertyChangedEventHandler PropertyChanged;

        protected void RaisePropertyChanged(string property)
        {
            PropertyChangedEventArgs args = new PropertyChangedEventArgs(property);
            var handler = this.PropertyChanged;
            //handler(this, args);
            if (handler != null)
            {
                handler(this, args);
            }
        }       
    }

1 Ответ

0 голосов
/ 12 декабря 2011

Каков фактический DataContext вашего StackPanel? Похоже, вы ищете изменение свойства, но в другом DataContext.

Предоставление BoolValue - это ваш CheckBox DataContext, ниже должно работать:

public class BoolValue : INotifyPropertyChanged
{ 
    private bool isChecked;
        public bool IsChecked
        {
            get { return isChecked; }
            set
            {
                if (isChecked != value)
                {
                    isChecked = value;
                    NotifyPropertyChanged("IsChecked");
                }
            }
        }


    public event PropertyChangedEventHandler PropertyChanged;
        public void NotifyPropertyChanged(String propertyName)
        {
            // take a copy to prevent thread issues
            PropertyChangedEventHandler handler = PropertyChanged;
            if (handler != null)
            {
                handler(this, new PropertyChangedEventArgs(propertyName));
            }
        }
}

XAML:

<CheckBox IsChecked="{Binding IsChecked, Mode=TwoWay}"/>
...