Como usar PropertyChangedCallBack

Eu tenho um TextBox Vinculado a uma propriedade de dependência, eu implementei uma função PropertyChangedCallBack, quando o texto muda, eu preciso chamar textbox.ScrollToEnd (), mas não consigo, pois a função PropertChanged precisa ser estática, existe uma maneira de contornar isso?

static FrameworkPropertyMetadata propertyMetaData = new FrameworkPropertyMetadata("MyWindow",
                                                                                      FrameworkPropertyMetadataOptions.BindsTwoWayByDefault,
                                                                                      new PropertyChangedCallback(TextProperty_PropertyChanged));

    public static readonly DependencyProperty TextProperty = DependencyProperty.Register("TextProperty", typeof(string), typeof(OutputPanel),
                                                                                         propertyMetaData);

    private void TextProperty_PropertyChanged(DependencyObject obj, DependencyPropertyChangedEventArgs e)
    {
        textbox.ScrollToEnd(); //An object reference is required for the non-static field.
    }

    public string Text
    {
        get 
        { 
            return this.GetValue(TextProperty) as string;
        }
        set 
        { 
            this.SetValue(TextProperty, value);
            //textbox.ScrollToEnd(); // I originally called it here but I think it should be in the property changed function. 
        }
    }

Obrigado

Eamonn

questionAnswers(1)

yourAnswerToTheQuestion