WPF 通过鼠标滚轮来滚动ScrollerView中的ListView中的内容

private int firstVisibleIndex = 0; // 用于跟踪第一个可见项的索引
private int scrollStep = 10; // 每次滚动的行数
private void ScrollViewer_PreviewMouseWheel(object sender, MouseWheelEventArgs e)
{
    // 获取ScrollViewer
    ScrollViewer scrollViewer = (ScrollViewer)sender;

    // 获取ListView
    System.Windows.Controls.ListView listView = FindVisualChild<System.Windows.Controls.ListView>(scrollViewer);

    if (listView != null)
    {
        // 根据滚动方向调整索引
        if (e.Delta > 0)//向上滚动
        {
            firstVisibleIndex = Math.Max(0, firstVisibleIndex - scrollStep);
        }
        else//向下滚动
        {
            firstVisibleIndex = Math.Min(listView.Items.Count - 1, firstVisibleIndex + scrollStep);
        }

        // 使用新的索引滚动ListView
        listView.ScrollIntoView(listView.Items[firstVisibleIndex]);//滚动listView使得listView.Items[firstVisibleIndex]处于可见范围

        e.Handled = true; // 防止事件继续传播
    }

寻找ScrollerView的ListView类型的子控件,向上滚动的时候将可见item向上挪动10个(到最上方的时候,通过Math.Max(0, firstVisibleIndex - scrollStep);限制无法上移),下移同理。

listView.ScrollIntoView(listView.Items[firstVisibleIndex]);//滚动listView使得listView.Items[firstVisibleIndex]处于可见范围

private T FindVisualChild<T>(DependencyObject depObj) where T : DependencyObject
{
    if (depObj == null)
    {
        return null;
    }

    for (int i = 0; i < VisualTreeHelper.GetChildrenCount(depObj); i++)
    {
        DependencyObject child = VisualTreeHelper.GetChild(depObj, i);
        if (child is T)
        {
            return (T)child;
        }

        T childItem = FindVisualChild<T>(child);
        if (childItem != null)
        {
            return childItem;
        }
    }
    return null;
}


 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值