3 overrides of NeedsRefresh
PresentationFramework (3)
MS\Internal\Controls\InnerItemCollectionView.cs (1)
391
public override bool
NeedsRefresh
MS\Internal\Data\EnumerableCollectionView.cs (1)
310
public override bool
NeedsRefresh
System\Windows\Controls\ItemCollection.cs (1)
569
public override bool
NeedsRefresh
5 references to NeedsRefresh
PresentationFramework (5)
MS\Internal\Controls\InnerItemCollectionView.cs (1)
395
return base.
NeedsRefresh
|| _isModified;
MS\Internal\Data\EnumerableCollectionView.cs (1)
312
get { return _view.
NeedsRefresh
; }
System\Windows\Controls\ItemCollection.cs (3)
453
if (_collectionView.
NeedsRefresh
)
573
return (EnsureCollectionView()) ? _collectionView.
NeedsRefresh
: false;
1710
raiseReset = !_collectionView.
NeedsRefresh
;