gpt4 book ai didi

c# - 在 Windows Phone 中滚动到达末尾时将项目添加到列表框?

转载 作者:行者123 更新时间:2023-11-30 15:38:58 26 4
gpt4 key购买 nike

我需要这样的要求......

最初我有一组绑定(bind)到 ListBox 的数据...如果我们滚动到末尾,我将向集合中添加更多数据并更新 ListBox...有什么方法可以在 Windows Phone 中实现此目的?

最佳答案

我想“实现这个”是指可以检测 ListBox 是否在末尾。在这种情况下,这应该会有所帮助。

您首先需要获得对 ScrollViewer 控件的访问权限,以便查看用户是否滚动以及当前位置。如果我的页面名为 ListContent,那么这段代码应该会给您一个良好的开端:

public partial class ListContent
{
private ScrollViewer scrollViewer;

public ListContent()
{
InitializeComponent();
Loaded += OnLoaded();
}

protected virtual void OnLoaded(object sender, RoutedEventArgs routedEventArgs)
{
scrollViewer = ControlHelper.List<ScrollViewer>(lbItems).FirstOrDefault();
if (scrollViewer == null) return;

FrameworkElement framework = VisualTreeHelper.GetChild(viewer, 0) as FrameworkElement;
if (framework == null) return;

VisualStateGroup group = FindVisualState(framework, "ScrollStates");
if (group == null) return;

group.CurrentStateChanged += OnListBoxStateChanged;
}

private VisualStateGroup FindVisualState(FrameworkElement element, string name)
{
if (element == null)
return null;

IList groups = VisualStateManager.GetVisualStateGroups(element);
return groups.Cast<VisualStateGroup>().FirstOrDefault(@group => @group.Name == name);
}

private void OnListBoxStateChanged(object sender, VisualStateChangedEventArgs e)
{
if (e.NewState.Name == ScrollState.NotScrolling.ToString())
{
// Check the ScrollableHeight and VerticalOffset here to determine
// the position of the ListBox.
// Add items, if the ListBox is at the end.

// This event will fire when the listbox complete stopped it's
// scrolling animation
}
}
}

如果您谈论的是动态添加数据,请确保您对数据使用的是 ObservableCollection。添加的项目将自动显示在您的列表框中。

关于c# - 在 Windows Phone 中滚动到达末尾时将项目添加到列表框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10930533/

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