Beispiel #1
0
            public GameObjectObservableCollection CreateObservableView()
            {
                GameObjectObservableCollection result = new GameObjectObservableCollection(_instanceId, _context, Values);

                Added += result.Add;
                return(result);
            }
Beispiel #2
0
 public GameObjectListCollectionView([NotNull] GameObjectObservableCollection observableCollection)
     : base(observableCollection)
 {
     this.SortDescriptions.Add(SortByTitleAscending);
     this.IsLiveFiltering = true;
 }