You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/extensibility/creating-a-windows-forms-toolbox-control.md
+6-5Lines changed: 6 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,6 @@
1
1
---
2
2
title: Creating a Windows Forms Toolbox Control | Microsoft Docs
3
+
description: This walkthrough shows how to use the Windows Forms Toolbox Control template to create a simple counter control using the Visual Studio SDK.
3
4
ms.date: 3/16/2019
4
5
ms.topic: how-to
5
6
helpviewer_keywords:
@@ -39,7 +40,7 @@ The `Counter` control requires two child controls: a <xref:System.Windows.Forms.
39
40
40
41
#### To build the user interface
41
42
42
-
1. In **Solution Explorer**, double-tap or double-click *Counter.cs* to open it in the designer.
43
+
1. In **Solution Explorer**, double-click *Counter.cs* to open it in the designer.
43
44
44
45
2. Remove the **Click Here !** button that is included by default when you add the Windows Forms Toolbox Control item template.
45
46
@@ -61,7 +62,7 @@ The `Counter` control will expose a method to increment the counter, an event to
61
62
62
63
#### To code the user control
63
64
64
-
1. Double-tap or double-click the form to open its load event handler in the code window.
65
+
1. Double-click the form to open its load event handler in the code window.
65
66
66
67
2. Above the event handler method, in the control class create an integer to store the counter value and a string to store the display text as shown in the following example.
67
68
@@ -124,7 +125,7 @@ The `Counter` control will expose a method to increment the counter, an event to
0 commit comments