From e581544ccabef2e65bd56565da105fb257fe833b Mon Sep 17 00:00:00 2001 From: Andres Pineda <1900897+ajpinedam@users.noreply.github.com> Date: Fri, 23 Aug 2024 09:29:18 -0400 Subject: [PATCH] chore: apply suggestions from code review Co-authored-by: Dominik Titl <78549750+morning4coffe-dev@users.noreply.github.com> --- doc/Learn/Mvux/Advanced/Selection.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/Learn/Mvux/Advanced/Selection.md b/doc/Learn/Mvux/Advanced/Selection.md index 0414b91ac..aaefa706a 100644 --- a/doc/Learn/Mvux/Advanced/Selection.md +++ b/doc/Learn/Mvux/Advanced/Selection.md @@ -4,7 +4,7 @@ uid: Uno.Extensions.Mvux.Advanced.Selection # Selection -MVUX has embedded support for both [single item](#single-item-selection) and [multi-item selection](#multi-item-selection). +MVUX has built-in support for both [single item](#single-item-selection) and [multi-item selection](#multi-item-selection). Any control that inherits [`Selector`](https://learn.microsoft.com/windows/windows-app-sdk/api/winrt/microsoft.ui.xaml.controls.primitives.selector) (e.g. [`ListView`](https://learn.microsoft.com/windows/windows-app-sdk/api/winrt/microsoft.ui.xaml.controls.listview), [`GridView`](https://learn.microsoft.com/windows/windows-app-sdk/api/winrt/microsoft.ui.xaml.controls.gridview), [`ComboBox`](https://learn.microsoft.com/windows/windows-app-sdk/api/winrt/microsoft.ui.xaml.controls.combobox), [`FlipView`](https://learn.microsoft.com/windows/windows-app-sdk/api/winrt/microsoft.ui.xaml.controls.flipview)), has automatic support for updating a List-State with its current selection. Binding to the `SelectedItem` property is not even required, as this works automatically. @@ -86,7 +86,7 @@ The `SelectedPerson` State is initialized with an empty value using `State