Ejemplo n.º 1
0
        private ExListView FindListView(FrameworkElement element)
        {
            if (element == null)
            {
                return(null);
            }

            ExListView view = element as ExListView;

            if (view != null)
            {
                return(view);
            }

            return(FindListView(element.TemplatedParent as FrameworkElement));
        }
Ejemplo n.º 2
0
 public ListViewBackend()
 {
     ListView = new ExListView();
     ListView.View = this.view;
 }
Ejemplo n.º 3
0
 public ListViewBackend()
 {
     ListView      = new ExListView();
     ListView.View = this.view;
 }
Ejemplo n.º 4
0
 public ListViewBackend()
 {
     ListView = new ExListView();
     ListView.View = this.view;
     VirtualizingStackPanel.SetIsVirtualizing (ListView, false);
 }