Skip to content

Commit ef7957c

Browse files
Apply suggestions from code review
Co-authored-by: Kenga Derdus <[email protected]>
1 parent 4cf0295 commit ef7957c

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

articles/active-directory/external-identities/customers/toc.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,7 @@ items:
216216
href: tutorial-desktop-wpf-dotnet-sign-in-prepare-tenant.md
217217
- name: Sign in and sign out
218218
href: tutorial-desktop-wpf-dotnet-sign-in-build-app.md
219+
displayName: Windows Presentation Form
219220
- name: Mobile
220221
items:
221222
- name: .NET MAUI

articles/active-directory/external-identities/customers/tutorial-desktop-wpf-dotnet-sign-in-build-app.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ Modify the *MainWindow.xaml* file to add the UI elements for the app. Open the *
240240
</StackPanel>
241241
```
242242

243-
This code adds key UI elements. The methods and objects handling the functionality of the UI elements are defined in the *MainWindow.xaml.cs* file that we create in the next step.
243+
This code adds key UI elements. The methods and objects that handles the functionality of the UI elements are defined in the *MainWindow.xaml.cs* file that we create in the next step.
244244

245245
- A button that signs in the user. This button calls the `SignInButton_Click` method when clicked on by the user.
246246
- A button that signs out the user. This button calls the `SignOutButton_Click` method when clicked on by the user.
@@ -381,9 +381,9 @@ The *MainWindow.xaml.cs* file contains the code that provides th runtime logic f
381381

382382
## Add code to the App.xaml.cs file
383383

384-
*App.xaml* is where you declare resources that are used across the app. It's the entry point for your app. *App.xaml.cs8 is the code behind file for *App.xaml*. *App.xaml.cs* also defines the start window for your application.
384+
*App.xaml* is where you declare resources that are used across the app. It's the entry point for your app. *App.xaml.cs* is the code behind file for *App.xaml*. *App.xaml.cs* also defines the start window for your application.
385385

386-
Open the *App.xaml.cs* file in the root folder of the app and add the following code in the file.
386+
Open the *App.xaml.cs* file in the root folder of the app, then add the following code into it.
387387

388388
```csharp
389389
using System.Windows;

articles/active-directory/external-identities/customers/tutorial-desktop-wpf-dotnet-sign-in-prepare-tenant.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Since this app signs-in users, add delegated permissions:
5454

5555
[!INCLUDE [active-directory-b2c-app-integration-add-user-flow](./includes/configure-user-flow/add-app-user-flow.md)]
5656

57-
## Pick your registration details
57+
## Record your registration details
5858

5959
The next step after this tutorial is to build a WPF desktop app that authenticates users. Ensure you have the following details:
6060

0 commit comments

Comments
 (0)