Skip to content

isabella232/uwp-csharp-controls-sample

 
 

Repository files navigation

[ARCHIVED] UWP Graph Controls Sample App

IMPORTANT

This project is being archived and replaced with the Build UWP apps with the Microsoft Graph SDK training. As part of the archival process, we're closing all open issues and pull requests.

You can continue to use this sample "as-is", but it won't be maintained moving forward. We apologize for any inconvenience.

This module will introduce you to working with the Microsoft Graph Controls (AadLogin, ProfileCard, PeoplePicker, SharePointFileList) found in the Windows Community Toolkit in your own UWP application.

Getting Started

The Microsoft Toolkit Graph Controls depend on the MicrosoftGraphService to introduce a layer of abstraction for login authentication. Note that the underlying graph object is the same GraphServiceClient for both the Toolkit and the Graph SDK. For more custom control of graph integration, check out the Microsoft Graph Training Module - Build UWP apps with the Microsoft Graph .NET SDK.

Register the application

  1. Navigate to the the Azure portal - App registrations to register your app. Login using a personal account (aka: Microsoft Account) or Work or School Account.

  2. Select New registration. On the Register an application page, set the values as follows.

  • Set Name to UWP Graph Controls Sample App.
  • Set Supported account types to Accounts in any organizational directory and personal Microsoft accounts.
  • Leave Redirect URI empty.
  • Choose Register.
  1. On the UWP Graph Controls Sample App page, copy the values of both the Application (client) ID and the Directory (tenant) ID. Save these two values, since you will need them later.

  2. Select the Add a Redirect URI link. On the Redirect URIs page, locate the Suggested Redirect URIs for public clients (mobile, desktop) section. Select the URI that begins with msal and the urn:ietf:wg:oauth:2.0:oob URI.

Extend the UWP app for Azure AD Authentication

  1. Open the App.xaml file.

  2. Update the ida:ClientID value to the one you copied when registering the Azure AD application.

    <Application.Resources>
        <x:String x:Key="ida:ClientID">ENTER_APP_ID</x:String>
    </Application.Resources>
    
  3. You can also set the app ID through the settings page of this sample.

Explore the Graph Controls

You can explore the different Graph Controls by clicking on control icons. Detailed documentations for each control can be found here:

About

No description, website, or topics provided.

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 100.0%