Я создаю прикрепленное поведение, чтобы установить обычное свойство класса:
public class LookupHelper
{
public static readonly DependencyProperty ItemsSourceProperty = DependencyProperty.RegisterAttached("ItemsSource", typeof(object), typeof(LookupHelper), new UIPropertyMetadata(null, OnItemsSourceChanged));
private static void OnItemsSourceChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
var control = d as MyControl;
if(control == null)
return;
control.ItemsSource = (IEnumerable)e.NewValue;
}
public static object GetItemsSource(GridColumn column)
{
return column.GetValue(ItemsSourceProperty);
}
public static void SetItemsSource(GridColumn column, object value)
{
column.SetValue(ItemsSourceProperty, value);
}
}
Здесь свойство ItemsSource в MyControl является обычным свойством, поэтому я не могу связать его в Xaml, поэтому это присоединенное поведение.
Теперь, когда я использую это присоединенное свойство, используя строку или объекты, оно работает, и заданная мною точка останова срабатывает, но когда я устанавливаю его с помощью разметки Binding, оно никогда не запускается. Почему это не работает?
<MyControl ctrl:LookupHelper.ItemsSource="DataSource"/>; //It works
<MyControl ctrl:LookupHelper.ItemsSource="{Binding Path=MyDataSource}"/>; //Does not work
Что мне нужно сделать, это установить для свойства ItemsSource значение, указанное в Binding.