diff --git a/docs/framework/winforms/how-to-respond-to-font-scheme-changes-in-a-windows-forms-application.md b/docs/framework/winforms/how-to-respond-to-font-scheme-changes-in-a-windows-forms-application.md index e2fd21c8dbe5f..0b0a86e0c3898 100644 --- a/docs/framework/winforms/how-to-respond-to-font-scheme-changes-in-a-windows-forms-application.md +++ b/docs/framework/winforms/how-to-respond-to-font-scheme-changes-in-a-windows-forms-application.md @@ -34,13 +34,13 @@ In the Windows operating systems, a user can change the system-wide font setting 5. Finally, implement a handler for the event that detaches the event handler. -> [!IMPORTANT] -> Failure to include this code will cause your application to leak memory. + > [!IMPORTANT] + > Failure to include this code will cause your application to leak memory. - [!code-csharp[WinFormsAutoScaling#5](../../../samples/snippets/csharp/VS_Snippets_Winforms/WinFormsAutoScaling/CS/Form1.cs#5)] - [!code-vb[WinFormsAutoScaling#5](../../../samples/snippets/visualbasic/VS_Snippets_Winforms/WinFormsAutoScaling/VB/Form1.vb#5)] + [!code-csharp[WinFormsAutoScaling#5](../../../samples/snippets/csharp/VS_Snippets_Winforms/WinFormsAutoScaling/CS/Form1.cs#5)] + [!code-vb[WinFormsAutoScaling#5](../../../samples/snippets/visualbasic/VS_Snippets_Winforms/WinFormsAutoScaling/VB/Form1.vb#5)] -1. Compile and run the code. +6. Compile and run the code. ### To manually change the font scheme in Windows XP @@ -50,7 +50,7 @@ In the Windows operating systems, a user can change the system-wide font setting 3. From the **Font Size** drop-down list box, select a new font size. - You will notice that the form now reacts to run time changes in the desktop font scheme. When the user changes between **Normal**, **Large Fonts**, and **Extra Large Fonts**, the form changes font and scales correctly. + You'll notice that the form now reacts to run-time changes in the desktop font scheme. When the user changes between **Normal**, **Large Fonts**, and **Extra Large Fonts**, the form changes font and scales correctly. ## Example [!code-csharp[WinFormsAutoScaling#1](../../../samples/snippets/csharp/VS_Snippets_Winforms/WinFormsAutoScaling/CS/Form1.cs#1)]