Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/collections/ObservableGroups.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ It is used by `ObservableGroupedCollection<TKey, TValue>` to represent the group

| Property | Type | Description |
| -- | -- | -- |
| Key | TKey | The key of the group. It is immutable. |
| Key | TKey | The key of the group. |

## ObservableGroupedCollection<TKey, TValue>

A list of groups that can be used by a [CollectionViewSource](https://docs.microsoft.com/en-us/uwp/api/Windows.UI.Xaml.Data.CollectionViewSource) to display groups in a `ListView` or `GridView`.
Each group inside the collection has an immutable `TKey` key and contains `TValue` values.
Each group inside the collection has an observable `TKey` key and contains `TValue` values.

It is an `ObservableCollection<ObservableGroup<TKey, TValue>>` so groups can be added to the collection using the regular methods of [ObservableCollection<T>](https://docs.microsoft.com/en-us/dotnet/api/system.collections.objectmodel.observablecollection-1?view=netstandard-2.0).

Expand Down