1 write to _shapingStorage
PresentationFramework (1)
src\Framework\System\Windows\Controls\ItemCollection.cs (1)
2297
_shapingStorage
= new ShapingStorage();
44 references to _shapingStorage
PresentationFramework (44)
src\Framework\System\Windows\Controls\ItemCollection.cs (44)
2290
get { return
_shapingStorage
!= null; }
2304
get { return IsShapingActive ?
_shapingStorage
._sort : null; }
2305
set { EnsureShapingStorage();
_shapingStorage
._sort = value; }
2310
get { return IsShapingActive ?
_shapingStorage
._isSortingSet : false; }
2314
_shapingStorage
._isSortingSet = value;
2322
if (
_shapingStorage
._sortDescriptionsMonitor == null)
2323
_shapingStorage
._sortDescriptionsMonitor = new MonitorWrapper();
2324
return
_shapingStorage
._sortDescriptionsMonitor;
2331
get { return IsShapingActive ?
_shapingStorage
._filter : null; }
2332
set { EnsureShapingStorage();
_shapingStorage
._filter = value; }
2338
get { return IsShapingActive ?
_shapingStorage
._groupBy : null; }
2339
set { EnsureShapingStorage();
_shapingStorage
._groupBy = value; }
2344
get { return IsShapingActive ?
_shapingStorage
._isGroupingSet : false; }
2348
_shapingStorage
._isGroupingSet = value;
2358
if (
_shapingStorage
._groupDescriptionsMonitor == null)
2359
_shapingStorage
._groupDescriptionsMonitor = new MonitorWrapper();
2360
return
_shapingStorage
._groupDescriptionsMonitor;
2367
get { return IsShapingActive ?
_shapingStorage
._isLiveSorting : null; }
2368
set { EnsureShapingStorage();
_shapingStorage
._isLiveSorting = value; }
2373
get { return IsShapingActive ?
_shapingStorage
._liveSortingProperties : null; }
2374
set { EnsureShapingStorage();
_shapingStorage
._liveSortingProperties = value; }
2379
get { return IsShapingActive ?
_shapingStorage
._isLiveSortingSet : false; }
2383
_shapingStorage
._isLiveSortingSet = value;
2391
if (
_shapingStorage
._liveSortingMonitor == null)
2392
_shapingStorage
._liveSortingMonitor = new MonitorWrapper();
2393
return
_shapingStorage
._liveSortingMonitor;
2400
get { return IsShapingActive ?
_shapingStorage
._isLiveFiltering : null; }
2401
set { EnsureShapingStorage();
_shapingStorage
._isLiveFiltering = value; }
2406
get { return IsShapingActive ?
_shapingStorage
._liveFilteringProperties : null; }
2407
set { EnsureShapingStorage();
_shapingStorage
._liveFilteringProperties = value; }
2412
get { return IsShapingActive ?
_shapingStorage
._isLiveFilteringSet : false; }
2416
_shapingStorage
._isLiveFilteringSet = value;
2424
if (
_shapingStorage
._liveFilteringMonitor == null)
2425
_shapingStorage
._liveFilteringMonitor = new MonitorWrapper();
2426
return
_shapingStorage
._liveFilteringMonitor;
2433
get { return IsShapingActive ?
_shapingStorage
._isLiveGrouping : null; }
2434
set { EnsureShapingStorage();
_shapingStorage
._isLiveGrouping = value; }
2439
get { return IsShapingActive ?
_shapingStorage
._liveGroupingProperties : null; }
2440
set { EnsureShapingStorage();
_shapingStorage
._liveGroupingProperties = value; }
2445
get { return IsShapingActive ?
_shapingStorage
._isLiveGroupingSet : false; }
2449
_shapingStorage
._isLiveGroupingSet = value;
2457
if (
_shapingStorage
._liveGroupingMonitor == null)
2458
_shapingStorage
._liveGroupingMonitor = new MonitorWrapper();
2459
return
_shapingStorage
._liveGroupingMonitor;