diff --git a/SampleTest/Samples/PeoplePickerSample.xaml b/SampleTest/Samples/PeoplePickerSample.xaml index 863c9f8..fb86f1b 100644 --- a/SampleTest/Samples/PeoplePickerSample.xaml +++ b/SampleTest/Samples/PeoplePickerSample.xaml @@ -1,29 +1,32 @@ - + - + - + The `PeoplePicker` lets a logged in user easily search for familiar people they interact with or contacts. Great for emails or messages. - - + + Picked People: - + diff --git a/SampleTest/Samples/PeoplePickerSample.xaml.cs b/SampleTest/Samples/PeoplePickerSample.xaml.cs index bab7250..dade64d 100644 --- a/SampleTest/Samples/PeoplePickerSample.xaml.cs +++ b/SampleTest/Samples/PeoplePickerSample.xaml.cs @@ -2,12 +2,16 @@ // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. +using System.Collections.ObjectModel; +using Microsoft.Graph; using Windows.UI.Xaml.Controls; namespace SampleTest.Samples { public sealed partial class PeoplePickerSample : Page { + ObservableCollection MyPeople { get; set; } = new(); + public PeoplePickerSample() { InitializeComponent();