3 overrides of NeedsRefresh
PresentationFramework (3)
src\Framework\MS\Internal\Controls\InnerItemCollectionView.cs (1)
393
public override bool
NeedsRefresh
src\Framework\MS\Internal\Data\EnumerableCollectionView.cs (1)
313
public override bool
NeedsRefresh
src\Framework\System\Windows\Controls\ItemCollection.cs (1)
580
public override bool
NeedsRefresh
5 references to NeedsRefresh
PresentationFramework (5)
src\Framework\MS\Internal\Controls\InnerItemCollectionView.cs (1)
397
return base.
NeedsRefresh
|| _isModified;
src\Framework\MS\Internal\Data\EnumerableCollectionView.cs (1)
315
get { return _view.
NeedsRefresh
; }
src\Framework\System\Windows\Controls\ItemCollection.cs (3)
464
if (_collectionView.
NeedsRefresh
)
584
return (EnsureCollectionView()) ? _collectionView.
NeedsRefresh
: false;
1721
raiseReset = !_collectionView.
NeedsRefresh
;