Свойство зависимости WPF не распознано - PullRequest
0 голосов
/ 28 октября 2009

Я пытаюсь преодолеть ограничение, которое не позволяет мне привязываться к обычным свойствам clr.

Используемое мной решение использует пользовательские свойства зависимостей, которые, в свою очередь, изменяют свойства clr.

Вот код

class BindableTextBox : TextBox
{
    public static readonly DependencyProperty BoundSelectionStartProperty = DependencyProperty.Register("BoundSelctionStart", typeof(int), typeof(BindableTextBox),
                                                                                                          new PropertyMetadata(new PropertyChangedCallback(BindableTextBox.onBoundSelectionStartChanged)));

    private static void onBoundSelectionStartChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
    {
        ((TextBox)d).SelectionStart = (int)e.NewValue;
    }

    private static readonly DependencyProperty BoundSelectionLenghtProperty = DependencyProperty.Register("BoundSelectionLenght", typeof(int), typeof(BindableTextBox),
                                                                                                            new PropertyMetadata(new PropertyChangedCallback(BindableTextBox.onBoundSelectionLenghtChanged)));

    private static void onBoundSelectionLenghtChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
    {
        ((TextBox)d).SelectionLength = (int)e.NewValue;
    }

    public int BoundSelectionStart
    {
        get { return (int)GetValue(BoundSelectionStartProperty); }
        set { SetValue(BoundSelectionStartProperty, value); }
    }

    public int BoundSelectionLenght
    {
        get { return (int)GetValue(BoundSelectionLenghtProperty); }
        set { SetValue(BoundSelectionLenghtProperty, value); }
    }
}

Но когда я пытаюсь связать что-то с BoundSelectionStart, он говорит, что говорит, что я могу связываться только с DP.

<bindable:BindableTextBox Text="{Binding Name}" BoundSelectionStart="{Binding ElementName=slider1, Path=Value}" />

В чем проблема?

1 Ответ

2 голосов
/ 28 октября 2009

У вас есть опечатка в строке:

public static readonly DependencyProperty BoundSelectionStartProperty = DependencyProperty.Register(...)

Первый параметр должен быть "BoundSelectionStart" (2x e в Selection), а не "BoundSelctionStart".

...