3 overrides of NeedsRefresh
PresentationFramework (3)
MS\Internal\Controls\InnerItemCollectionView.cs (1)
390
public override bool
NeedsRefresh
MS\Internal\Data\EnumerableCollectionView.cs (1)
306
public override bool
NeedsRefresh
System\Windows\Controls\ItemCollection.cs (1)
560
public override bool
NeedsRefresh
5 references to NeedsRefresh
PresentationFramework (5)
MS\Internal\Controls\InnerItemCollectionView.cs (1)
394
return base.
NeedsRefresh
|| _isModified;
MS\Internal\Data\EnumerableCollectionView.cs (1)
308
get { return _view.
NeedsRefresh
; }
System\Windows\Controls\ItemCollection.cs (3)
444
if (_collectionView.
NeedsRefresh
)
564
return (EnsureCollectionView()) ? _collectionView.
NeedsRefresh
: false;
1701
raiseReset = !_collectionView.
NeedsRefresh
;