0

我已经自定义了在 XAML 中声明的 ListBox:

<ListBox x:Name="uicMDSQonfServer">
  <ListBox.ItemTemplate>
    <DataTemplate>
      <StackPanel Orientation="Horizontal"
                  Margin="0,5,0,5">
        <CheckBox IsChecked="{Binding RelativeSource={TemplatedParent},
                                      Path=Activated}" />
        <ContentPresenter Content="{Binding RelativeSource={TemplatedParent},
                                    Path=Content}"/>
      </StackPanel>
    </DataTemplate>
  </ListBox.ItemTemplate>
</ListBox>

我需要与通用列表进行 dsiplay 和互操作,其中 T 是:

public class QonfServer: QonfBase, INotifyPropertyChanged
{
        private string ip;
        private bool activated;

        public string Ip {
            get { return ip; }
        }

        public bool Activated
        {
            get { return activated; }
            set
            {
                if (activated == value)
                    return;

                activated = value;
                if (PropertyChanged != null)
                    PropertyChanged(this, new PropertyChangedEventArgs("Activated"));
            }
        }

        #region INotifyPropertyChanged Members
        public event PropertyChangedEventHandler PropertyChanged;
        #endregion
    }

QonfBase 是非常简单的基类:

public class QonfBase
{
        private int id;
        public  int ID { get; set; }
}

当我以编程方式打开 Activated 属性时,复选框不会更改状态。调试:PropertyChanged = null。有谁知道,什么是不正确的?

4

1 回答 1

1

一个明显的问题引起了人们的注意: TemplatedParentControlTemplates 一起使用。由于您使用的是DataTemplate,这应该可以工作:

<CheckBox IsChecked="{Binding Activated}" /> 
<ContentPresenter Content="{Binding Content}"/> 

我没有注意到 C# 有任何问题。

于 2010-01-21T08:23:02.747 回答