3

TextBlock常に最後までスクロールできる機能はありますか?

コードビハインドでこれを行う例をいくつか見てきましたが、

MVVMの原則を維持し、背後にあるコードに触れないようにしたいのですが、

でこれを行う方法を探していXAMLます。

持っていますか?

4

1 に答える 1

5

I am assuming your TextBlock is nested within a ScrollViewer. In this case you are going to have to create an attached property. See this related question:

How to scroll to the bottom of a ScrollViewer automatically with Xaml and binding?

i.e. create an attached property:

public static class Helper
{
    public static bool GetAutoScroll(DependencyObject obj)
    {
        return (bool)obj.GetValue(AutoScrollProperty);
    }

    public static void SetAutoScroll(DependencyObject obj, bool value)
    {
        obj.SetValue(AutoScrollProperty, value);
    }

    public static readonly DependencyProperty AutoScrollProperty =
        DependencyProperty.RegisterAttached("AutoScroll", typeof(bool), typeof(Helper), new PropertyMetadata(false, AutoScrollPropertyChanged));

    private static void AutoScrollPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
    {
        var scrollViewer = d as ScrollViewer;

        if (scrollViewer != null && (bool)e.NewValue)
        {
            scrollViewer.ScrollToBottom();
        }
    }
}

Then bind as follows:

<ScrollViewer local:Helper.AutoScroll="{Binding BooleanViewModelPropertyThatTriggersScroll}" .../>
于 2013-02-19T06:44:08.040 に答える