14 references to CollectionView
System.Activities.Presentation (14)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\FromExpression\Framework\ValueEditors\ChoiceEditor.cs (14)
433if (this.isSelectingValue && this.CollectionView != null) 438this.ValueIndex = this.CollectionView.IndexOf(this.Value); 518Fx.Assert(this.CollectionView != null, "ChoiceEditor CollectionView cannot be null."); 519if (currentIndex < 0 || currentIndex >= this.CollectionView.Count - 1) 534Fx.Assert(this.CollectionView != null, "ChoiceEditor CollectionView cannot be null."); 535if (currentIndex <= 0 || currentIndex > this.CollectionView.Count - 1) 537currentIndex = this.CollectionView.Count - 1; 762if (this.CollectionView != null && !this.CollectionView.IsEmpty) 782this.ValueIndex = this.CollectionView.Count - 1; 1011if (this.CollectionView != null) 1013return this.CollectionView.IndexOf(item); 1023if (this.CollectionView != null) 1025return this.CollectionView.GetItemAt(index);