zoukankan      html  css  js  c++  java
  • 【2016-10-25】【坚持学习】【Day12】【WPF】【Telerik】【VirtualtionData 虚拟化数据】

    VirtualQueryableCollectionView 

    When working with the UI components that enable UI Virtualization, you may take advantage of the above mentioned technique by usingVirtualQueryableCollectionView class. It enables you to benefit from the on-demand data loading to smooth scrolling with UI virtual components. 
    The VirtualQueryableCollectionView provides you with the following important members:

      • LoadSize property - defines the maximum number of items requested at once;

      • VirtualItemCount property – defines the total number of items available on the server-side;

      • ItemsLoading event – will be raised when the collection is requesting item at some index and this item is not already loaded. The arguments in this event are as follows:

      • StartIndex – requested item index;

      • ItemCount - number of requested items (can be less than or equal to the LoadSize).

    public MainWindow()
    {
        InitializeComponent();
        var context = new NorthwindEntities();
        var query = context.Order_Details.OrderBy(o => o.OrderID);
        var view = new VirtualQueryableCollectionView(query) { LoadSize = 10 };
        DataContext = view;
    }

    另外一种写法;

     public MainPage()
            {
                InitializeComponent();
    
                var context = new NorthwindDomainContext();
                var query = context.GetOrder_DetailsQuery().OrderBy(o => o.OrderID);
                query.IncludeTotalCount = true;
    
                var view = new VirtualQueryableCollectionView() { LoadSize = 10, VirtualItemCount = 100 };
                view.ItemsLoading += (s, e) =>
                {
                    context.Load<Order_Detail>(query.Skip(e.StartIndex).Take(e.ItemCount)).Completed += (sender, args) =>
                   {
                       var lo = (LoadOperation)sender;
                       if (lo.TotalEntityCount != -1 && lo.TotalEntityCount != view.VirtualItemCount)
                       {
                           view.VirtualItemCount = lo.TotalEntityCount;
                       }
    
                       view.Load(e.StartIndex, lo.Entities);
                   };
                };
    
                DataContext = view;
            }

    作者:zscmj
    出处:http://www.cnblogs.com/zscmj/
    本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。

  • 相关阅读:
    ASP.NET(4):多语言的解决方案
    无题
    SIP 计时器的总结(转)
    一个Sip协议栈的实现方案
    通过拦截WCF消息进行身份栈传播
    从WPF控件拖放到Winform控件的注意事项
    一个用C#操作OpenLDAP的例子
    通过定制行为拦截WCF消息
    一个基于Prism的方案的介绍
    MVVM模式下附加属性的使用
  • 原文地址:https://www.cnblogs.com/zscmj/p/5998341.html
Copyright © 2011-2022 走看看