Skip to content

Latest commit

 

History

History
52 lines (36 loc) · 1.83 KB

File metadata and controls

52 lines (36 loc) · 1.83 KB
title PeoplePicker XAML Control
author michael-hawker
description The PeoplePicker control searches for people and renders the list of results from Microsoft Graph.
keywords windows 10, uwp, windows community toolkit, uwp community toolkit, uwp toolkit, people, peoplepicker, picker, graph
dev_langs
csharp

(Preview) PeoplePicker XAML Control

The PeoplePicker searches for people and renders the list of results from Microsoft Graph. By default, the component will search across all people.

Available in the CommunityToolkit.Graph.Uwp package.

Important

Windows Community Toolkit - Graph Controls and Helpers packages are in preview. To get started using WCT preview packages visit the WCT Preview Packages wiki page.

Syntax

<Grid xmlns:controls="using:CommunityToolkit.Graph.Uwp.Controls">
    <controls:PeoplePicker />
</Grid>

Sample Output

PeoplePicker Control

Properties

Property Type Description
PickedPeople ObservableCollection<Person> Gets the set of Person objects chosen by the user.
SuggestedPeople ObservableCollection<Person> Gets or sets collection of people suggested by the graph from the user's query.

Requirements

Device family Universal, MinVersion or higher
Namespace CommunityToolkit.Graph.Uwp.Controls
NuGet package CommunityToolkit.Graph.Uwp

API

Related Topics