From 34be56098500e859fca3519608cd4f3899e2ee1e Mon Sep 17 00:00:00 2001
From: "Andy (Steve) De George" <67293991+adegeo@users.noreply.github.com>
Date: Wed, 2 Jun 2021 05:32:26 -0700
Subject: [PATCH] Update how-to-set-the-tab-order.md (#1080)
---
.../net/winforms/controls/how-to-set-the-tab-order.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dotnet-desktop-guide/net/winforms/controls/how-to-set-the-tab-order.md b/dotnet-desktop-guide/net/winforms/controls/how-to-set-the-tab-order.md
index d11652f..4827d72 100644
--- a/dotnet-desktop-guide/net/winforms/controls/how-to-set-the-tab-order.md
+++ b/dotnet-desktop-guide/net/winforms/controls/how-to-set-the-tab-order.md
@@ -75,7 +75,7 @@ You can prevent a control from receiving focus when the Tab key is pr
> [!NOTE]
> A radio button group has a single tab stop at run-time. The selected button, the button with its property set to `true`, has its property automatically set to `true`. Other buttons in the radio button group have their `TabStop` property set to `false`.
-### Set TabStop programmatically
+### Set TabStop with the designer
01. Select the control in the designer.
@@ -83,7 +83,7 @@ You can prevent a control from receiving focus when the Tab key is pr
:::image type="content" source="media/how-to-set-the-tab-order/properties-tabstop.png" alt-text="Visual Studio Properties pane for .NET Windows Forms with TabStop property shown.":::
-### Set TabStop in code
+### Set TabStop programmatically
01. Set the `TabStop` property to `false`.