c#绑定不支持Property

本文关键字:Property 绑定 不支持 | 更新日期: 2023-09-27 18:07:23

我目前正在尝试在c# 4中遵循MVVM,但在绑定工作时遇到麻烦。

从底部开始,这里是我的Property类,应该负责为XAML绑定更改的属性:

namespace Visualizer.MVVM
{
    public class Property<T> : DependencyObject, INotifyPropertyChanged
    {
        //private T _Value;
        public T Value
        {
            get { return (T) GetValue(ValueProperty); }
            set
            {
                SetValue(ValueProperty, value);
                OnPropertyChanged();
            }
        }
        public event PropertyChangedEventHandler PropertyChanged;
        protected void OnPropertyChanged()
        {
            PropertyChangedEventHandler handler = PropertyChanged;
            if (handler != null)
            {
                handler(this, new PropertyChangedEventArgs("Value"));
            }
        }
        public Property(T val)
        {
            Value = val;
        }
        public static readonly DependencyProperty ValueProperty =
            DependencyProperty.Register("Value", typeof(T), typeof(Property<T>));
    }
}

控件的ViewModel看起来像这样,并在MainWindow.xaml.cs中实例化:

public class CheckboxControlVM
{
    public Property<bool> IsChecked { get; set; }
    public Property<string> Name { get; set; }
    public CheckboxControlVM(bool isChecked, string name)
    {
        IsChecked = new Property<bool>(isChecked);
        Name = new Property<string>(name);
    }
}

控件没有隐藏代码,所以下面是它的XAML:

<UserControl x:Class="Visualizer.MVVM.Checkbox"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
             xmlns:local="clr-namespace:Visualizer.MVVM"
             mc:Ignorable="d" 
             d:DesignHeight="300" d:DesignWidth="300">
    <StackPanel Orientation="Horizontal" x:Name="LayoutRoot">
        <CheckBox IsChecked="{Binding Path=IsChecked.Value, Mode=TwoWay}"/>
        <TextBlock Text="{Binding Path=Name.Value, Mode=OneWay}"/>
    </StackPanel>
</UserControl>

最后是MainWindow.xaml中的绑定:

<mvvm:Checkbox DataContext="{Binding Realtime}"/>

我被困在这个问题上的时间比我应该的要长得多,我相当确定这只是一个简单的问题。什么好主意吗?

c#绑定不支持Property<T>

我不太明白你想要用那个属性设计实现什么目标。通常我不会在WPF中这样做,所以我不太确定这是否有帮助。

通常,我在ViewModel级别实现INotifyPropertyChanged,而不是在VM拥有的属性中。例子:

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

第二,除非我创建一个WPF用户控件,否则我不使用DependencyProperty。所以我使用私有属性和触发OnPropertyChanged与属性名称。

private string _name;
public string Name{
  set{
    _name = value;
    OnPropertyChanged("Name");
  }
}

最后,在XAML中,我使用了与UpdateSourceTrigger=PropertyChanged的绑定。

<TextBlock Text="{Binding Path=Name, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"/>

也许你可以尝试在你的绑定中添加UpdateSourceTrigger=PropertyChanged,但我不确定它是否会工作。

try this

public class CheckboxControlVM
  {
    bool _isChecked = false;
    string _name ;
  public Property<bool> IsChecked { get { return _isChecked} set { _isChecked=value;} }
  public Property<string> Name { get { return _name } set { _name =value;} }
  public CheckboxControlVM(bool isChecked, string name)
  {
    _isChecked = isChecked;
     _name = name;
    IsChecked = new Property<bool>(_isChecked);
    Name = new Property<string>(_name);
  }
}