gpt4 book ai didi

wpf - 将 wpf 文本 block 滚动到末尾

转载 作者:行者123 更新时间:2023-12-01 11:46:18 25 4
gpt4 key购买 nike

TextBlock 是否有任何允许始终滚动到末尾的功能?

我在代码隐藏中看到了很多这样做的例子,

我想保持MVVM的原则,不去碰后面的代码,

我正在寻找一种在 XAML 中执行此操作的方法。

有吗?

最佳答案

我假设您的 TextBlock 嵌套在 ScrollViewer 中。在这种情况下,您将不得不创建一个附加属性。请参阅此相关问题:

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

即创建附加属性:

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();
}
}
}

然后绑定(bind)如下:

<ScrollViewer local:Helper.AutoScroll="{Binding BooleanViewModelPropertyThatTriggersScroll}" .../>

关于wpf - 将 wpf 文本 block 滚动到末尾,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14951302/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com