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)); }
public ListViewBackend() { ListView = new ExListView(); ListView.View = this.view; }
public ListViewBackend() { ListView = new ExListView(); ListView.View = this.view; VirtualizingStackPanel.SetIsVirtualizing (ListView, false); }