你的位置:首页 > 软件开发 > ASP.net > “Win10 UAP 开发系列”之 在MVVM模式中控制ListView滚动位置

“Win10 UAP 开发系列”之 在MVVM模式中控制ListView滚动位置

发布时间:2015-06-22 12:00:08
这个扩展属性从WP8.1就开始用了,主要是为了解决MVVM模式中无法直接控制ListView滚动位置的问题。比如在VM中刷新了数据,需要将View中的ListView滚动到顶部,ListView只有一个ScrollIntoView()方法可以控制滚动的位置,但最好在VM中不要出现 ...

这个扩展属性从WP8.1就开始用了,主要是为了解决MVVM模式中无法直接控制ListView滚动位置的问题。比如在VM中刷新了数据,需要将View中的ListView滚动到顶部,ListView只有一个ScrollIntoView()方法可以控制滚动的位置,但最好在VM中不要出现直接控制View的代码,需要通过其他的方式。

使用一个扩展属性即可实现:

/// <summary>  /// 将ListView滚动到顶部 使用方法:在ListView增加扩展属性  /// ext:ListViewScrollToProperties.ScrollToIndex="{Binding ScrollToIndex}"  /// 在VM中先vm.ScrollToIndex = 1;再vm.ScrollToIndex = 0;  /// </summary>  public class ListViewScrollToProperties : DependencyObject  {    public static readonly DependencyProperty ScrollToIndexProperty =      DependencyProperty.RegisterAttached("ScrollToIndex", typeof(int), typeof(ListViewScrollToProperties), new PropertyMetadata("", OnScrollToIndexChanged));    public static get='_blank'>string GetScrollToIndex(DependencyObject dependencyObject)    {      return (string)dependencyObject.GetValue(ScrollToIndexProperty);    }    public static void SetScrollToIndex(DependencyObject dependencyObject, string scrollToIndex)    {      dependencyObject.SetValue(ScrollToIndexProperty, scrollToIndex);    }    private static void OnScrollToIndexChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)    {      if ((int)e.NewValue != 1)      {        var listview = (ListView)d;        if (listview != null)        {          if (listview.Items.Count > 0)          {            try            {              var target = listview.Items[int.Parse(e.NewValue.ToString())];              if (target != null)              {                listview.UpdateLayout();                listview.ScrollIntoView(target);              }            }            catch (Exception ex)            {              System.Diagnostics.Debug.WriteLine(ex.Message);            }          }        }      }    }  }

 

海外公司注册、海外银行开户、跨境平台代入驻、VAT、EPR等知识和在线办理:https://www.xlkjsw.com

原标题:“Win10 UAP 开发系列”之 在MVVM模式中控制ListView滚动位置

关键词:ie

ie
*特别声明:以上内容来自于网络收集,著作权属原作者所有,如有侵权,请联系我们: admin#shaoqun.com (#换成@)。