当前位置: 首页>>代码示例>>C#>>正文


C# ListViewBase.ScrollIntoView方法代码示例

本文整理汇总了C#中Windows.UI.Xaml.Controls.ListViewBase.ScrollIntoView方法的典型用法代码示例。如果您正苦于以下问题:C# ListViewBase.ScrollIntoView方法的具体用法?C# ListViewBase.ScrollIntoView怎么用?C# ListViewBase.ScrollIntoView使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Windows.UI.Xaml.Controls.ListViewBase的用法示例。


在下文中一共展示了ListViewBase.ScrollIntoView方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: ScrollItem

        public static void ScrollItem(ListViewBase control, int indexDelta)
        {
            if (control == null || control.Items == null)
                return;

            var scrollViewer = VisualTreeUtilities.GetVisualChild<ScrollViewer>(control);

            var p = new Point(Window.Current.Bounds.Width/2, 10);
            var transform = control.TransformToVisual(Window.Current.Content);
            var checkPoint = transform.TransformPoint(p);

            var q = from lvi in VisualTreeHelper.FindElementsInHostCoordinates(checkPoint, scrollViewer).OfType<ListViewItem>()
                where lvi.Content != null
                select lvi.Content;

            var item = q.FirstOrDefault();

            if (item == null)
                return;

            var index = control.Items.IndexOf(item);
            var nextItemIndex = index + indexDelta;
            if (index != -1 && nextItemIndex >= 0 && nextItemIndex < control.Items.Count)
            {
                var nextItem = control.Items[nextItemIndex];
                control.ScrollIntoView(nextItem, ScrollIntoViewAlignment.Leading);
            }
        }
开发者ID:valeronm,项目名称:handyNews,代码行数:28,代码来源:ScrollUtils.cs

示例2: FocusIndex

        private static bool FocusIndex(ListViewBase listViewBase, int i)
        {
            var newContainer = listViewBase.ContainerFromIndex(i) as Control;
            if (newContainer == null)
            {
                return false;
            }

            newContainer.Focus(FocusState.Keyboard);
            listViewBase.ScrollIntoView(newContainer);
            return true;
        }
开发者ID:ali-hk,项目名称:Toolkit,代码行数:12,代码来源:KeyboardListScrollAction.cs


注:本文中的Windows.UI.Xaml.Controls.ListViewBase.ScrollIntoView方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。