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`.