3 overrides of NeedsRefresh
PresentationFramework (3)
MS\Internal\Controls\InnerItemCollectionView.cs (1)
389
public override bool
NeedsRefresh
MS\Internal\Data\EnumerableCollectionView.cs (1)
305
public override bool
NeedsRefresh
System\Windows\Controls\ItemCollection.cs (1)
556
public override bool
NeedsRefresh
5 references to NeedsRefresh
PresentationFramework (5)
MS\Internal\Controls\InnerItemCollectionView.cs (1)
393
return base.
NeedsRefresh
|| _isModified;
MS\Internal\Data\EnumerableCollectionView.cs (1)
307
get { return _view.
NeedsRefresh
; }
System\Windows\Controls\ItemCollection.cs (3)
440
if (_collectionView.
NeedsRefresh
)
560
return (EnsureCollectionView()) ? _collectionView.
NeedsRefresh
: false;
1691
raiseReset = !_collectionView.
NeedsRefresh
;