2

我已经设置了自己的用户控件,其中包含两个 ComboBox,每个 ComboBox 项源都绑定到一个 DependencyProperty。我遇到的问题是将使用我的用户控件的表单中的属性传递给用户控件。

下面是我的用户控件:

public static readonly DependencyProperty ListOneProperty = DependencyProperty.Register
    ("ListOne", typeof(List<int>), typeof(LinkedComboBox), new PropertyMetadata(new List<int>()));
    public List<int> ListOne
    {
        get { return (List<int>)GetValue(ListOneProperty); }
        set { SetValue(ListOneProperty, value); }
    }


    public static readonly DependencyProperty ListTwoProperty = DependencyProperty.Register
        ("ListTwo", typeof(List<string>), typeof(LinkedComboBox), new PropertyMetadata(new List<string>()));
    public List<string> ListTwo
    {
        get { return (List<string>)GetValue(ListTwoProperty); }
        set { SetValue(ListTwoProperty, value); }
    }


    public LinkedComboBox()
    {

        InitializeComponent();
        FillListOne();
    }

下面是我的 MainWindow xaml:

        <control:LinkedComboBox x:Name="LinkedBox" ListTwo="{Binding MyList}"/>

和 MainWindow.xaml.cs:

    static List<string> _myList = new List<string>{"abc","efg"};
    public List<string> MyList 
    {
        get { return _myList; }
        set { _myList = value; } 
        }
    public MainWindow()
    {

        InitializeComponent();

    }

我需要什么才能让用户控件接受来自主窗口的绑定?

4

1 回答 1

2

一切都很好,除了您需要PropertyChangedCallback处理您的财产。

这是一个简单的例子

 public static readonly DependencyProperty ListTwoProperty = DependencyProperty.Register
    ("ListTwo", typeof(List<string>), typeof(LinkedComboBox), new PropertyMetadata(new List<string>(), new PropertyChangedCallback(Changed)));

 private static void Changed(DependencyObject d, DependencyPropertyChangedEventArgs e) 
 {  
   //e.NewValue here is your MyList in MainWindow.
 }
于 2013-01-13T11:02:26.690 回答