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)
28internal class AnnotationObservableCollection<T> : ObservableCollection<T> where T : INotifyPropertyChanged2, IOwnedObject
MS\Internal\Annotations\XmlElementCollection.cs (1)
24internal sealed class XmlElementCollection : ObservableCollection<XmlElement>
MS\Internal\Controls\ValidationErrorCollection.cs (1)
25internal class ValidationErrorCollection : ObservableCollection<ValidationError>
MS\Internal\Data\DifferencingCollection.cs (1)
38internal sealed class DifferencingCollection : ObservableCollection<object>
System\Windows\Controls\CalendarBlackoutDatesCollection.cs (1)
14public sealed class CalendarBlackoutDatesCollection : ObservableCollection<CalendarDateRange>
System\Windows\Controls\DataGridColumnCollection.cs (1)
16internal class DataGridColumnCollection : ObservableCollection<DataGridColumn>
System\Windows\Controls\GridViewColumnCollection.cs (1)
20public class GridViewColumnCollection : ObservableCollection<GridViewColumn>
System\Windows\Controls\SelectedDatesCollection.cs (1)
14public sealed class SelectedDatesCollection : ObservableCollection<DateTime>
System\Windows\Controls\SelectedItemCollection.cs (1)
17internal class SelectedItemCollection : ObservableCollection<object>
System\Windows\Data\BindingGroup.cs (1)
1962private class BindingExpressionCollection : ObservableCollection<BindingExpressionBase>
System\Windows\PropertyPath.cs (1)
983private class PathParameterCollection : ObservableCollection<object>
System\Windows\ResourceDictionaryCollection.cs (1)
8internal 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)
88 var toolbarItems = new ObservableCollection<ToolbarItem>(); 92 var menuBarItems = new ObservableCollection<MenuBarItem>(); 210 public ObservableCollection<Element> InternalChildren { get; } = new ObservableCollection<Element>();
ResourceDictionary.cs (1)
87 var col = new ObservableCollection<ResourceDictionary>();
Shell\BaseShellItem.cs (1)
28 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)
808private ObservableCollection<GroupDescription> _groupBy = new ObservableCollection<GroupDescription>();
MS\Internal\Data\CollectionViewProxy.cs (3)
886_liveSortingProperties = new ObservableCollection<string>(); 912_liveFilteringProperties = new ObservableCollection<string>(); 942_liveGroupingProperties = new ObservableCollection<string>();
MS\Internal\Data\EnumerableCollectionView.cs (1)
36_snapshot = new ObservableCollection<object>();
MS\Internal\Data\XmlDataCollection.cs (1)
33internal XmlDataCollection(XmlDataProvider xmlDataProvider) : base(new ObservableCollection<XmlNode>())
System\Windows\Annotations\Annotation.cs (1)
896_authors = new ObservableCollection<string>();
System\Windows\Controls\DataGrid.cs (1)
84_rowValidationRules = new ObservableCollection<ValidationRule>();
System\Windows\Controls\ItemCollection.cs (4)
676MyGroupDescriptions = new ObservableCollection<GroupDescription>(); 1359MyLiveSortingProperties = new ObservableCollection<string>(); 1392MyLiveFilteringProperties = new ObservableCollection<string>(); 1429MyLiveGroupingProperties = new ObservableCollection<string>();
System\Windows\Controls\ItemsControl.cs (1)
3997private ObservableCollection<GroupStyle> _groupStyle = new ObservableCollection<GroupStyle>();
System\Windows\Data\BindingListCollectionView.cs (3)
1179_liveSortingProperties = new ObservableCollection<string>(); 1200_liveFilteringProperties = new ObservableCollection<string>(); 1221_liveGroupingProperties = new ObservableCollection<string>();
System\Windows\Data\CollectionViewGroup.cs (1)
34_itemsRW = new ObservableCollection<object>();
System\Windows\Data\CollectionViewSource.cs (4)
41_groupBy = new ObservableCollection<GroupDescription>(); 352_liveSortingProperties = new ObservableCollection<string>(); 473_liveFilteringProperties = new ObservableCollection<string>(); 594_liveGroupingProperties = new ObservableCollection<string>();
System\Windows\Data\ListCollectionView.cs (3)
1474_liveSortingProperties = new ObservableCollection<string>(); 1496_liveFilteringProperties = new ObservableCollection<string>(); 1518_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)
59private ObservableCollection<object> _tabHeaderItemsSource = new ObservableCollection<object>(); // ItemsSource for the headers items control. 431_tabGroupHeaders = new ObservableCollection<RibbonContextualTabGroup>();
Microsoft\Windows\Controls\Ribbon\RibbonGallery.cs (1)
3219private ObservableCollection<object> _categoryFilters = new ObservableCollection<object>();
159 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 (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 (41)
Cells\Cell.cs (1)
21 ObservableCollection<MenuItem> _contextActions;
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)
88 var toolbarItems = new ObservableCollection<ToolbarItem>(); 92 var menuBarItems = new ObservableCollection<MenuBarItem>(); 210 public ObservableCollection<Element> InternalChildren { get; } = new ObservableCollection<Element>(); 584 var logicalChildren = this.InternalChildren; 624 var logicalChildren = this.InternalChildren; 799 var logicalChildren = this.InternalChildren;
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)
28 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.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)
19public 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)
58public virtual ObservableCollection<GroupDescription> GroupDescriptions 418ObservableCollection<object> explicitNames = 808private ObservableCollection<GroupDescription> _groupBy = new ObservableCollection<GroupDescription>();
MS\Internal\Data\CollectionViewProxy.cs (7)
153public override ObservableCollection<GroupDescription> GroupDescriptions 876ObservableCollection<string> ICollectionViewLiveShaping.LiveSortingProperties 902ObservableCollection<string> ICollectionViewLiveShaping.LiveFilteringProperties 932ObservableCollection<string> ICollectionViewLiveShaping.LiveGroupingProperties 1076private ObservableCollection<string> _liveSortingProperties; // dummy collection 1077private ObservableCollection<string> _liveFilteringProperties; // dummy collection 1078private ObservableCollection<string> _liveGroupingProperties; // dummy collection
MS\Internal\Data\EnumerableCollectionView.cs (2)
163public override ObservableCollection<GroupDescription> GroupDescriptions 651private ObservableCollection<object> _snapshot;
MS\Internal\Data\LiveShapingList.cs (1)
186ObservableCollection<GroupDescription> groupDescriptions = icv?.GroupDescriptions;
System\Windows\Annotations\Annotation.cs (1)
933private ObservableCollection<String> _authors;
System\Windows\Controls\DataGrid.cs (3)
108public ObservableCollection<DataGridColumn> Columns 928public ObservableCollection<ValidationRule> RowValidationRules 8613private ObservableCollection<ValidationRule> _rowValidationRules; // Stores the row ValidationRule's
System\Windows\Controls\DataGridCellsPanel.cs (2)
1030ObservableCollection<DataGridColumn> columns = parentDataGrid.Columns; 2372private ObservableCollection<DataGridColumn> Columns
System\Windows\Controls\DataGridColumnHeaderCollection.cs (4)
17public DataGridColumnHeaderCollection(ObservableCollection<DataGridColumn> columns) 81public ColumnHeaderCollectionEnumerator(ObservableCollection<DataGridColumn> columns) 184private ObservableCollection<DataGridColumn> _columns; 264private ObservableCollection<DataGridColumn> _columns;
System\Windows\Controls\DataGridRow.cs (1)
587protected internal virtual void OnColumnsChanged(ObservableCollection<DataGridColumn> columns, NotifyCollectionChangedEventArgs e)
System\Windows\Controls\ItemCollection.cs (22)
668public override ObservableCollection<GroupDescription> GroupDescriptions 1351public ObservableCollection<string> LiveSortingProperties 1384public ObservableCollection<string> LiveFilteringProperties 1421public ObservableCollection<string> LiveGroupingProperties 1751ObservableCollection<GroupDescription> source = (IsGroupingSet) ? MyGroupDescriptions : _collectionView.GroupDescriptions; 1752ObservableCollection<GroupDescription> target = (IsGroupingSet) ? _collectionView.GroupDescriptions : MyGroupDescriptions; 1791ObservableCollection<GroupDescription> group = view.GroupDescriptions; 1800ObservableCollection<string> liveSortingProperties = iclvs.LiveSortingProperties; 1806ObservableCollection<string> liveFilteringProperties = iclvs.LiveFilteringProperties; 1812ObservableCollection<string> liveGroupingProperties = iclvs.LiveGroupingProperties; 1833ObservableCollection<GroupDescription> group = view.GroupDescriptions; 1842ObservableCollection<string> liveSortingProperties = iclvs.LiveSortingProperties; 1848ObservableCollection<string> liveFilteringProperties = iclvs.LiveFilteringProperties; 1854ObservableCollection<string> liveGroupingProperties = iclvs.LiveGroupingProperties; 2303private ObservableCollection<GroupDescription> MyGroupDescriptions 2338private ObservableCollection<string> MyLiveSortingProperties 2371private ObservableCollection<string> MyLiveFilteringProperties 2404private ObservableCollection<string> MyLiveGroupingProperties 2476public ObservableCollection<GroupDescription> _groupBy; // storage for GroupDescriptions; will forward to _collectionView.GroupDescriptions when available 2482public ObservableCollection<string> _liveSortingProperties; // storage for LiveSortingProperties; will forward to _collectionView.LiveSortingProperties when available 2483public ObservableCollection<string> _liveFilteringProperties; // storage for LiveFilteringProperties; will forward to _collectionView.LiveFilteringProperties when available 2484public ObservableCollection<string> _liveGroupingProperties; // storage for LiveGroupingProperties; will forward to _collectionView.LiveGroupingProperties when available
System\Windows\Controls\ItemsControl.cs (2)
936public ObservableCollection<GroupStyle> GroupStyle 3997private ObservableCollection<GroupStyle> _groupStyle = new ObservableCollection<GroupStyle>();
System\Windows\Controls\Primitives\DataGridCellsPresenter.cs (4)
116ObservableCollection<DataGridColumn> columns = dataGridOwner.Columns; 247ObservableCollection<DataGridColumn> columns = Columns; 338protected internal virtual void OnColumnsChanged(ObservableCollection<DataGridColumn> columns, NotifyCollectionChangedEventArgs e) 616private ObservableCollection<DataGridColumn> Columns
System\Windows\Controls\Primitives\Selector.cs (5)
47ObservableCollection<object> selectedItems = new SelectedItemCollection(this); 811ObservableCollection<object> oldSelectedItems = (ObservableCollection<object>) GetValue(SelectedItemsImplProperty); 892ObservableCollection<object> userSelectedItems = (ObservableCollection<object>)sender;
System\Windows\Data\BindingListCollectionView.cs (7)
340public override ObservableCollection<GroupDescription> GroupDescriptions 1173public ObservableCollection<string> LiveSortingProperties 1194public ObservableCollection<string> LiveFilteringProperties 1215public ObservableCollection<string> LiveGroupingProperties 2553private ObservableCollection<string> _liveSortingProperties; 2554private ObservableCollection<string> _liveFilteringProperties; 2555private ObservableCollection<string> _liveGroupingProperties;
System\Windows\Data\CollectionView.cs (1)
280public virtual ObservableCollection<GroupDescription> GroupDescriptions
System\Windows\Data\CollectionViewGroup.cs (2)
126protected ObservableCollection<object> ProtectedItems 157private ObservableCollection<object> _itemsRW;
System\Windows\Data\CollectionViewSource.cs (9)
231public ObservableCollection<GroupDescription> GroupDescriptions 346public ObservableCollection<string> LiveSortingProperties 467public ObservableCollection<string> LiveFilteringProperties 588public ObservableCollection<string> LiveGroupingProperties 1035ObservableCollection<string> properties; 1267private ObservableCollection<GroupDescription> _groupBy; 1268private ObservableCollection<string> _liveSortingProperties; 1269private ObservableCollection<string> _liveFilteringProperties; 1270private ObservableCollection<string> _liveGroupingProperties;
System\Windows\Data\ListCollectionView.cs (7)
243public override ObservableCollection<GroupDescription> GroupDescriptions 1468public ObservableCollection<string> LiveSortingProperties 1490public ObservableCollection<string> LiveFilteringProperties 1512public ObservableCollection<string> LiveGroupingProperties 3327private ObservableCollection<string> _liveSortingProperties; 3328private ObservableCollection<string> _liveFilteringProperties; 3329private ObservableCollection<string> _liveGroupingProperties;
System\Windows\ResourceDictionary.cs (1)
2627private 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)
59private ObservableCollection<object> _tabHeaderItemsSource = new ObservableCollection<object>(); // ItemsSource for the headers items control. 61private ObservableCollection<RibbonContextualTabGroup> _tabGroupHeaders; // Collection of ContextualTabGroups
Microsoft\Windows\Controls\Ribbon\RibbonGallery.cs (1)
3219private 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;