27 types derived from ObservableCollection
Microsoft.AspNetCore.Components.WebView.Maui (1)
RootComponentsCollection.cs (1)
9 public class RootComponentsCollection : ObservableCollection<RootComponent>, IJSComponentConfiguration
Microsoft.AspNetCore.Components.WebView.WindowsForms (1)
RootComponentsCollection.cs (1)
12 public class RootComponentsCollection : ObservableCollection<RootComponent>, IJSComponentConfiguration
Microsoft.AspNetCore.Components.WebView.Wpf (1)
RootComponentsCollection.cs (1)
12 public class RootComponentsCollection : ObservableCollection<RootComponent>, IJSComponentConfiguration
Microsoft.Maui.Controls (12)
DoubleCollection.cs (1)
9 public sealed class DoubleCollection : ObservableCollection<double>
FormattedString.cs (1)
79 class SpanCollection : ObservableCollection<Span>
GestureElement.cs (1)
68 class GestureRecognizerCollection : ObservableCollection<IGestureRecognizer>
GradientStopCollection.cs (1)
6 public sealed class GradientStopCollection : ObservableCollection<GradientStop>
Interactivity\AttachedCollection.cs (1)
8 internal class AttachedCollection<T> : ObservableCollection<T>, ICollection<T>, IAttachedObject where T : BindableObject, IAttachedObject
ObservableList.cs (1)
10 internal class ObservableList<T> : ObservableCollection<T>
PointCollection.cs (1)
9 public sealed class PointCollection : ObservableCollection<Point>
Shapes\GeometryCollection.cs (1)
6 public sealed class GeometryCollection : ObservableCollection<Geometry>
Shapes\PathFigureCollection.cs (1)
6 public sealed class PathFigureCollection : ObservableCollection<PathFigure>
Shapes\PathSegmentCollection.cs (1)
6 public sealed class PathSegmentCollection : ObservableCollection<PathSegment>
Shapes\TransformCollection.cs (1)
6 public sealed class TransformCollection : ObservableCollection<Transform>
TrackableCollection.cs (1)
7 internal class TrackableCollection<T> : ObservableCollection<T>
PresentationFramework (12)
MS\Internal\Annotations\AnnotationObservableCollection.cs (1)
29internal class AnnotationObservableCollection<T> : ObservableCollection<T> where T : INotifyPropertyChanged2, IOwnedObject
MS\Internal\Annotations\XmlElementCollection.cs (1)
25internal sealed class XmlElementCollection : ObservableCollection<XmlElement>
MS\Internal\Controls\ValidationErrorCollection.cs (1)
26internal class ValidationErrorCollection : ObservableCollection<ValidationError>
MS\Internal\Data\DifferencingCollection.cs (1)
39internal sealed class DifferencingCollection : ObservableCollection<object>
System\Windows\Controls\CalendarBlackoutDatesCollection.cs (1)
15public sealed class CalendarBlackoutDatesCollection : ObservableCollection<CalendarDateRange>
System\Windows\Controls\DataGridColumnCollection.cs (1)
17internal class DataGridColumnCollection : ObservableCollection<DataGridColumn>
System\Windows\Controls\GridViewColumnCollection.cs (1)
21public class GridViewColumnCollection : ObservableCollection<GridViewColumn>
System\Windows\Controls\SelectedDatesCollection.cs (1)
15public sealed class SelectedDatesCollection : ObservableCollection<DateTime>
System\Windows\Controls\SelectedItemCollection.cs (1)
18internal class SelectedItemCollection : ObservableCollection<object>
System\Windows\Data\BindingGroup.cs (1)
1966class BindingExpressionCollection : ObservableCollection<BindingExpressionBase>
System\Windows\PropertyPath.cs (1)
984private class PathParameterCollection : ObservableCollection<object>
System\Windows\ResourceDictionaryCollection.cs (1)
9internal class ResourceDictionaryCollection : ObservableCollection<ResourceDictionary>
54 instantiations of ObservableCollection
Microsoft.AspNetCore.Routing (1)
DependencyInjection\RoutingServiceCollectionExtensions.cs (1)
70var dataSources = new ObservableCollection<EndpointDataSource>();
Microsoft.AspNetCore.Routing.Tests (2)
CompositeEndpointDataSourceTest.cs (2)
202var observableCollection = new ObservableCollection<EndpointDataSource> { dataSource1 }; 238var observableCollection = new ObservableCollection<EndpointDataSource> { dataSource1 };
Microsoft.Maui (1)
Primitives\LockableObservableListWrapper.cs (1)
14 public readonly ObservableCollection<string> _list = new ObservableCollection<string>();
Microsoft.Maui.Controls (18)
Cells\Cell.cs (1)
93 _contextActions = new ObservableCollection<MenuItem>();
Items\CarouselView.cs (1)
46 static readonly BindablePropertyKey VisibleViewsPropertyKey = BindableProperty.CreateReadOnly(nameof(VisibleViews), typeof(ObservableCollection<View>), typeof(CarouselView), null, defaultValueCreator: (b) => new ObservableCollection<View>());
LegacyLayouts\Layout.cs (1)
174 internal ObservableCollection<Element> InternalChildren { get; } = new ObservableCollection<Element>();
Menu\MenuBar.cs (1)
21 readonly ObservableCollection<IMenuBarItem> _menus = new ObservableCollection<IMenuBarItem>();
Menu\MenuFlyoutItem.cs (1)
16 var collection = new ObservableCollection<KeyboardAccelerator>();
Page\Page.cs (3)
87 var toolbarItems = new ObservableCollection<ToolbarItem>(); 91 var menuBarItems = new ObservableCollection<MenuBarItem>(); 209 public ObservableCollection<Element> InternalChildren { get; } = new ObservableCollection<Element>();
ResourceDictionary.cs (1)
87 var col = new ObservableCollection<ResourceDictionary>();
Shell\BaseShellItem.cs (1)
27 protected private ObservableCollection<Element> DeclaredChildren { get; } = new ObservableCollection<Element>();
Shell\MenuItemCollection.cs (1)
12 ObservableCollection<MenuItem> _inner = new ObservableCollection<MenuItem>();
Shell\ShellElementCollection.cs (1)
285 var items = new ObservableCollection<TBaseShellItem>();
Shell\ShellFlyoutItemsManager.cs (1)
237 public ReadOnlyObservableCollectionWithSource() : this(new ObservableCollection<T>())
SwipeView\SwipeItems.cs (1)
27 _swipeItems = new ObservableCollection<Maui.ISwipeItem>(swipeItems) ?? throw new ArgumentNullException(nameof(swipeItems));
TableView\TableSection.cs (1)
15 readonly ObservableCollection<T> _children = new ObservableCollection<T>();
View\View.cs (2)
86 readonly ObservableCollection<IGestureRecognizer> _gestureRecognizers = new ObservableCollection<IGestureRecognizer>(); 189 _compositeGestureRecognizers = new ObservableCollection<IGestureRecognizer>();
VisualStateManager.cs (1)
606 Setters = new ObservableCollection<Setter>();
Microsoft.Maui.Controls.Maps (4)
Map.cs (2)
45 readonly ObservableCollection<Pin> _pins = new(); 46 readonly ObservableCollection<MapElement> _mapElements = new();
Polygon.cs (1)
39 var observable = new ObservableCollection<Location>();
Polyline.cs (1)
22 var observable = new ObservableCollection<Location>();
PresentationFramework (24)
MS\Internal\Data\CollectionViewGroupRoot.cs (1)
810ObservableCollection<GroupDescription> _groupBy = new ObservableCollection<GroupDescription>();
MS\Internal\Data\CollectionViewProxy.cs (3)
887_liveSortingProperties = new ObservableCollection<string>(); 913_liveFilteringProperties = new ObservableCollection<string>(); 943_liveGroupingProperties = new ObservableCollection<string>();
MS\Internal\Data\EnumerableCollectionView.cs (1)
37_snapshot = new ObservableCollection<object>();
MS\Internal\Data\XmlDataCollection.cs (1)
34internal XmlDataCollection(XmlDataProvider xmlDataProvider) : base(new ObservableCollection<XmlNode>())
System\Windows\Annotations\Annotation.cs (1)
897_authors = new ObservableCollection<string>();
System\Windows\Controls\DataGrid.cs (1)
85_rowValidationRules = new ObservableCollection<ValidationRule>();
System\Windows\Controls\ItemCollection.cs (4)
678MyGroupDescriptions = new ObservableCollection<GroupDescription>(); 1361MyLiveSortingProperties = new ObservableCollection<string>(); 1394MyLiveFilteringProperties = new ObservableCollection<string>(); 1431MyLiveGroupingProperties = new ObservableCollection<string>();
System\Windows\Controls\ItemsControl.cs (1)
3998private ObservableCollection<GroupStyle> _groupStyle = new ObservableCollection<GroupStyle>();
System\Windows\Data\BindingListCollectionView.cs (3)
1180_liveSortingProperties = new ObservableCollection<string>(); 1201_liveFilteringProperties = new ObservableCollection<string>(); 1222_liveGroupingProperties = new ObservableCollection<string>();
System\Windows\Data\CollectionViewGroup.cs (1)
35_itemsRW = new ObservableCollection<object>();
System\Windows\Data\CollectionViewSource.cs (4)
42_groupBy = new ObservableCollection<GroupDescription>(); 353_liveSortingProperties = new ObservableCollection<string>(); 474_liveFilteringProperties = new ObservableCollection<string>(); 595_liveGroupingProperties = new ObservableCollection<string>();
System\Windows\Data\ListCollectionView.cs (3)
1475_liveSortingProperties = new ObservableCollection<string>(); 1497_liveFilteringProperties = new ObservableCollection<string>(); 1519_liveGroupingProperties = new ObservableCollection<string>();
System.ObjectModel (1)
System\Collections\ObjectModel\ReadOnlyObservableCollection.cs (1)
34public static new ReadOnlyObservableCollection<T> Empty { get; } = new ReadOnlyObservableCollection<T>(new ObservableCollection<T>());
System.Windows.Controls.Ribbon (3)
Microsoft\Windows\Controls\Ribbon\Ribbon.cs (2)
60private ObservableCollection<object> _tabHeaderItemsSource = new ObservableCollection<object>(); // ItemsSource for the headers items control. 432_tabGroupHeaders = new ObservableCollection<RibbonContextualTabGroup>();
Microsoft\Windows\Controls\Ribbon\RibbonGallery.cs (1)
3226private ObservableCollection<object> _categoryFilters = new ObservableCollection<object>();
168 references to ObservableCollection
Microsoft.AspNetCore.Routing (3)
CompositeEndpointDataSource.cs (2)
28internal CompositeEndpointDataSource(ObservableCollection<EndpointDataSource> dataSources) 112if (_dataSources is ObservableCollection<EndpointDataSource> observableDataSources)
DependencyInjection\RoutingServiceCollectionExtensions.cs (1)
70var dataSources = new ObservableCollection<EndpointDataSource>();
Microsoft.AspNetCore.Routing.Tests (2)
CompositeEndpointDataSourceTest.cs (2)
202var observableCollection = new ObservableCollection<EndpointDataSource> { dataSource1 }; 238var observableCollection = new ObservableCollection<EndpointDataSource> { dataSource1 };
Microsoft.CodeAnalysis.CSharp.CodeStyle (1)
src\Analyzers\CSharp\Analyzers\UseCollectionExpression\UseCollectionExpressionHelpers.cs (1)
267if (type.Name is nameof(ObservableCollection<int>) or nameof(ReadOnlyObservableCollection<int>))
Microsoft.CodeAnalysis.CSharp.Features (1)
src\Analyzers\CSharp\Analyzers\UseCollectionExpression\UseCollectionExpressionHelpers.cs (1)
267if (type.Name is nameof(ObservableCollection<int>) or nameof(ReadOnlyObservableCollection<int>))
Microsoft.CodeAnalysis.EditorFeatures.Wpf (1)
InlineRename\UI\SmartRename\SmartRenameViewModel.cs (1)
62public ObservableCollection<string> SuggestedNames { get; } = [];
Microsoft.Maui (1)
Primitives\LockableObservableListWrapper.cs (1)
14 public readonly ObservableCollection<string> _list = new ObservableCollection<string>();
Microsoft.Maui.Controls (46)
Cells\Cell.cs (1)
21 ObservableCollection<MenuItem> _contextActions;
Compatibility\Handlers\TabbedPage\iOS\TabbedRenderer.cs (1)
303 var pages = tabbed.InternalChildren;
ElementCollection.cs (1)
8 public ElementCollection(ObservableCollection<Element> list) : base(list)
IPageController.cs (1)
13 ObservableCollection<Element> InternalChildren { get; }
Items\CarouselView.cs (3)
46 static readonly BindablePropertyKey VisibleViewsPropertyKey = BindableProperty.CreateReadOnly(nameof(VisibleViews), typeof(ObservableCollection<View>), typeof(CarouselView), null, defaultValueCreator: (b) => new ObservableCollection<View>()); 52 public ObservableCollection<View> VisibleViews => (ObservableCollection<View>)GetValue(VisibleViewsProperty);
LegacyLayouts\AbsoluteLayout.cs (1)
313 public AbsoluteElementCollection(ObservableCollection<Element> inner, AbsoluteLayout parent) : base(inner)
LegacyLayouts\Grid.cs (1)
305 public GridElementCollection(ObservableCollection<Element> inner, Grid parent) : base(inner)
LegacyLayouts\Layout.cs (1)
174 internal ObservableCollection<Element> InternalChildren { get; } = new ObservableCollection<Element>();
LegacyLayouts\RelativeLayout.cs (1)
352 public RelativeElementCollection(ObservableCollection<Element> inner, RelativeLayout parent) : base(inner)
Menu\MenuBar.cs (1)
21 readonly ObservableCollection<IMenuBarItem> _menus = new ObservableCollection<IMenuBarItem>();
Menu\MenuFlyoutItem.cs (1)
16 var collection = new ObservableCollection<KeyboardAccelerator>();
Menu\MenuItemTracker.cs (4)
189 ((ObservableCollection<TMenuItem>)GetMenuItems(page)).CollectionChanged += OnCollectionChanged; 207 ((ObservableCollection<TMenuItem>)GetMenuItems(page)).CollectionChanged += OnCollectionChanged; 250 ((ObservableCollection<TMenuItem>)GetMenuItems(page)).CollectionChanged -= OnCollectionChanged; 270 ((ObservableCollection<TMenuItem>)GetMenuItems(page)).CollectionChanged -= OnCollectionChanged;
ObservableWrapper.cs (2)
12 readonly ObservableCollection<TTrack> _list; 14 public ObservableWrapper(ObservableCollection<TTrack> list)
Page\Page.cs (6)
87 var toolbarItems = new ObservableCollection<ToolbarItem>(); 91 var menuBarItems = new ObservableCollection<MenuBarItem>(); 209 public ObservableCollection<Element> InternalChildren { get; } = new ObservableCollection<Element>(); 581 var logicalChildren = this.InternalChildren; 621 var logicalChildren = this.InternalChildren; 796 var logicalChildren = this.InternalChildren;
Platform\GestureManager\GesturePlatformManager.iOS.cs (4)
67 ObservableCollection<IGestureRecognizer>? ElementGestureRecognizers => 68 (_handler.VirtualView as Element)?.GetCompositeGestureRecognizers() as ObservableCollection<IGestureRecognizer>; 809 var oldRecognizers = (ObservableCollection<IGestureRecognizer>)oldView.GestureRecognizers;
ResourceDictionary.cs (6)
79 ObservableCollection<ResourceDictionary> _mergedDictionaries; 87 var col = new ObservableCollection<ResourceDictionary>(); 222 var dictionaries = (ObservableCollection<ResourceDictionary>)MergedDictionaries; 320 var dictionaries = (ObservableCollection<ResourceDictionary>)MergedDictionaries;
Shell\BaseShellItem.cs (1)
27 protected private ObservableCollection<Element> DeclaredChildren { get; } = new ObservableCollection<Element>();
Shell\MenuItemCollection.cs (1)
12 ObservableCollection<MenuItem> _inner = new ObservableCollection<MenuItem>();
Shell\ShellElementCollection.cs (1)
285 var items = new ObservableCollection<TBaseShellItem>();
Shell\ShellFlyoutItemsManager.cs (4)
27 var flyoutItems = _flyoutItemsReadonly.List; 39 var dest = ((ReadOnlyObservableCollectionWithSource<Element>)flyoutItems[i]).List; 241 public ReadOnlyObservableCollectionWithSource(ObservableCollection<T> list) : base(list) 246 public ObservableCollection<T> List { get; }
SwipeView\SwipeItems.cs (1)
15 readonly ObservableCollection<Maui.ISwipeItem> _swipeItems;
TableView\TableSection.cs (1)
15 readonly ObservableCollection<T> _children = new ObservableCollection<T>();
View\View.cs (2)
86 readonly ObservableCollection<IGestureRecognizer> _gestureRecognizers = new ObservableCollection<IGestureRecognizer>(); 182 ObservableCollection<IGestureRecognizer> _compositeGestureRecognizers;
Microsoft.Maui.Controls.Compatibility (4)
iOS\EventTracker.cs (4)
57 ObservableCollection<IGestureRecognizer> ElementGestureRecognizers 62 ?.CompositeGestureRecognizers as ObservableCollection<IGestureRecognizer>); 699 var oldRecognizers = (ObservableCollection<IGestureRecognizer>)oldView.GestureRecognizers;
Microsoft.Maui.Controls.Maps (4)
Map.cs (2)
45 readonly ObservableCollection<Pin> _pins = new(); 46 readonly ObservableCollection<MapElement> _mapElements = new();
Polygon.cs (1)
39 var observable = new ObservableCollection<Location>();
Polyline.cs (1)
22 var observable = new ObservableCollection<Location>();
Microsoft.VisualStudio.LanguageServices (5)
StackTraceExplorer\StackTraceExplorerRootViewModel.cs (1)
32public ObservableCollection<StackTraceExplorerTab> Tabs { get; } = [];
StackTraceExplorer\StackTraceExplorerViewModel.cs (1)
20public ObservableCollection<FrameViewModel> Frames { get; } = [];
Utilities\BindableTextBlock.cs (1)
19get { return (ObservableCollection<Inline>)GetValue(InlineListProperty); }
ValueTracking\TreeViewItemBase.cs (1)
15public ObservableCollection<TreeViewItemBase> ChildItems { get; } = [];
ValueTracking\ValueTrackingTreeViewModel.cs (1)
28public ObservableCollection<TreeItemViewModel> Roots { get; } = [];
Microsoft.VisualStudio.LanguageServices.UnitTests (1)
SolutionExplorer\AnalyzersFolderProviderTests.vb (1)
73Dim items = TryCast(collectionSource.Items, ObservableCollection(Of AnalyzersFolderItem))
netstandard (1)
netstandard.cs (1)
148[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Collections.ObjectModel.ObservableCollection<>))]
PresentationFramework (84)
MS\Internal\Data\CollectionViewGroupRoot.cs (3)
59public virtual ObservableCollection<GroupDescription> GroupDescriptions 419ObservableCollection<object> explicitNames = 810ObservableCollection<GroupDescription> _groupBy = new ObservableCollection<GroupDescription>();
MS\Internal\Data\CollectionViewProxy.cs (7)
154public override ObservableCollection<GroupDescription> GroupDescriptions 877ObservableCollection<string> ICollectionViewLiveShaping.LiveSortingProperties 903ObservableCollection<string> ICollectionViewLiveShaping.LiveFilteringProperties 933ObservableCollection<string> ICollectionViewLiveShaping.LiveGroupingProperties 1078ObservableCollection<string> _liveSortingProperties; // dummy collection 1079ObservableCollection<string> _liveFilteringProperties; // dummy collection 1080ObservableCollection<string> _liveGroupingProperties; // dummy collection
MS\Internal\Data\EnumerableCollectionView.cs (2)
164public override ObservableCollection<GroupDescription> GroupDescriptions 652ObservableCollection<object> _snapshot;
MS\Internal\Data\LiveShapingList.cs (1)
187ObservableCollection<GroupDescription> groupDescriptions = icv?.GroupDescriptions;
System\Windows\Annotations\Annotation.cs (1)
934private ObservableCollection<String> _authors;
System\Windows\Controls\DataGrid.cs (3)
109public ObservableCollection<DataGridColumn> Columns 929public ObservableCollection<ValidationRule> RowValidationRules 8620private ObservableCollection<ValidationRule> _rowValidationRules; // Stores the row ValidationRule's
System\Windows\Controls\DataGridCellsPanel.cs (2)
1031ObservableCollection<DataGridColumn> columns = parentDataGrid.Columns; 2379private ObservableCollection<DataGridColumn> Columns
System\Windows\Controls\DataGridColumnHeaderCollection.cs (4)
18public DataGridColumnHeaderCollection(ObservableCollection<DataGridColumn> columns) 82public ColumnHeaderCollectionEnumerator(ObservableCollection<DataGridColumn> columns) 185private ObservableCollection<DataGridColumn> _columns; 265private ObservableCollection<DataGridColumn> _columns;
System\Windows\Controls\DataGridRow.cs (1)
594protected internal virtual void OnColumnsChanged(ObservableCollection<DataGridColumn> columns, NotifyCollectionChangedEventArgs e)
System\Windows\Controls\ItemCollection.cs (22)
670public override ObservableCollection<GroupDescription> GroupDescriptions 1353public ObservableCollection<string> LiveSortingProperties 1386public ObservableCollection<string> LiveFilteringProperties 1423public ObservableCollection<string> LiveGroupingProperties 1753ObservableCollection<GroupDescription> source = (IsGroupingSet) ? MyGroupDescriptions : _collectionView.GroupDescriptions; 1754ObservableCollection<GroupDescription> target = (IsGroupingSet) ? _collectionView.GroupDescriptions : MyGroupDescriptions; 1793ObservableCollection<GroupDescription> group = view.GroupDescriptions; 1802ObservableCollection<string> liveSortingProperties = iclvs.LiveSortingProperties; 1808ObservableCollection<string> liveFilteringProperties = iclvs.LiveFilteringProperties; 1814ObservableCollection<string> liveGroupingProperties = iclvs.LiveGroupingProperties; 1835ObservableCollection<GroupDescription> group = view.GroupDescriptions; 1844ObservableCollection<string> liveSortingProperties = iclvs.LiveSortingProperties; 1850ObservableCollection<string> liveFilteringProperties = iclvs.LiveFilteringProperties; 1856ObservableCollection<string> liveGroupingProperties = iclvs.LiveGroupingProperties; 2305private ObservableCollection<GroupDescription> MyGroupDescriptions 2340private ObservableCollection<string> MyLiveSortingProperties 2373private ObservableCollection<string> MyLiveFilteringProperties 2406private ObservableCollection<string> MyLiveGroupingProperties 2478public ObservableCollection<GroupDescription> _groupBy; // storage for GroupDescriptions; will forward to _collectionView.GroupDescriptions when available 2484public ObservableCollection<string> _liveSortingProperties; // storage for LiveSortingProperties; will forward to _collectionView.LiveSortingProperties when available 2485public ObservableCollection<string> _liveFilteringProperties; // storage for LiveFilteringProperties; will forward to _collectionView.LiveFilteringProperties when available 2486public ObservableCollection<string> _liveGroupingProperties; // storage for LiveGroupingProperties; will forward to _collectionView.LiveGroupingProperties when available
System\Windows\Controls\ItemsControl.cs (2)
937public ObservableCollection<GroupStyle> GroupStyle 3998private ObservableCollection<GroupStyle> _groupStyle = new ObservableCollection<GroupStyle>();
System\Windows\Controls\Primitives\DataGridCellsPresenter.cs (4)
117ObservableCollection<DataGridColumn> columns = dataGridOwner.Columns; 248ObservableCollection<DataGridColumn> columns = Columns; 339protected internal virtual void OnColumnsChanged(ObservableCollection<DataGridColumn> columns, NotifyCollectionChangedEventArgs e) 617private ObservableCollection<DataGridColumn> Columns
System\Windows\Controls\Primitives\Selector.cs (5)
48ObservableCollection<object> selectedItems = new SelectedItemCollection(this); 812ObservableCollection<object> oldSelectedItems = (ObservableCollection<object>) GetValue(SelectedItemsImplProperty); 893ObservableCollection<object> userSelectedItems = (ObservableCollection<object>)sender;
System\Windows\Data\BindingListCollectionView.cs (7)
341public override ObservableCollection<GroupDescription> GroupDescriptions 1174public ObservableCollection<string> LiveSortingProperties 1195public ObservableCollection<string> LiveFilteringProperties 1216public ObservableCollection<string> LiveGroupingProperties 2554private ObservableCollection<string> _liveSortingProperties; 2555private ObservableCollection<string> _liveFilteringProperties; 2556private ObservableCollection<string> _liveGroupingProperties;
System\Windows\Data\CollectionView.cs (1)
281public virtual ObservableCollection<GroupDescription> GroupDescriptions
System\Windows\Data\CollectionViewGroup.cs (2)
127protected ObservableCollection<object> ProtectedItems 158ObservableCollection<object> _itemsRW;
System\Windows\Data\CollectionViewSource.cs (9)
232public ObservableCollection<GroupDescription> GroupDescriptions 347public ObservableCollection<string> LiveSortingProperties 468public ObservableCollection<string> LiveFilteringProperties 589public ObservableCollection<string> LiveGroupingProperties 1036ObservableCollection<string> properties; 1268ObservableCollection<GroupDescription> _groupBy; 1269ObservableCollection<string> _liveSortingProperties; 1270ObservableCollection<string> _liveFilteringProperties; 1271ObservableCollection<string> _liveGroupingProperties;
System\Windows\Data\ListCollectionView.cs (7)
244public override ObservableCollection<GroupDescription> GroupDescriptions 1469public ObservableCollection<string> LiveSortingProperties 1491public ObservableCollection<string> LiveFilteringProperties 1513public ObservableCollection<string> LiveGroupingProperties 3328private ObservableCollection<string> _liveSortingProperties; 3329private ObservableCollection<string> _liveFilteringProperties; 3330private ObservableCollection<string> _liveGroupingProperties;
System\Windows\ResourceDictionary.cs (1)
2614private ObservableCollection<ResourceDictionary> _mergedDictionaries = null;
Roslyn.VisualStudio.DiagnosticsWindow (2)
VenusMargin\ProjectionBufferViewModel.cs (2)
14public ObservableCollection<ITextBuffer> SourceBuffers { get; } 15public ObservableCollection<SnapshotSpan> SourceSpans { get; }
System (1)
src\libraries\shims\System\ref\System.cs (1)
142[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Collections.ObjectModel.ObservableCollection<>))]
System.ObjectModel (3)
System\Collections\ObjectModel\ObservableCollection.cs (2)
303internal ObservableCollection<T> _collection; 305public SimpleMonitor(ObservableCollection<T> collection)
System\Collections\ObjectModel\ReadOnlyObservableCollection.cs (1)
25public ReadOnlyObservableCollection(ObservableCollection<T> list) : base(list)
System.Windows (1)
System.Windows.cs (1)
4[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Collections.ObjectModel.ObservableCollection<>))]
System.Windows.Controls.Ribbon (3)
Microsoft\Windows\Controls\Ribbon\Ribbon.cs (2)
60private ObservableCollection<object> _tabHeaderItemsSource = new ObservableCollection<object>(); // ItemsSource for the headers items control. 62private ObservableCollection<RibbonContextualTabGroup> _tabGroupHeaders; // Collection of ContextualTabGroups
Microsoft\Windows\Controls\Ribbon\RibbonGallery.cs (1)
3226private ObservableCollection<object> _categoryFilters = new ObservableCollection<object>();
WindowsBase (1)
WindowsBase.cs (1)
4[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Collections.ObjectModel.ObservableCollection<>))]
WindowsBase.Tests (3)
System\ComponentModel\CurrentChangedEventManagerTests.cs (1)
584public ObservableCollection<GroupDescription> GroupDescriptions => throw new NotImplementedException();
System\ComponentModel\CurrentChangingEventManagerTests.cs (1)
566public ObservableCollection<GroupDescription> GroupDescriptions => throw new NotImplementedException();
System\ComponentModel\GroupDescriptionTests.cs (1)
228ObservableCollection<object> collection = description.GroupNames;