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
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,7 @@ The `Counter` control requires two child controls: a <xref:System.Windows.Forms.
39
39
40
40
#### To build the user interface
41
41
42
-
1. In **Solution Explorer**, double-click (or double-tap) *Counter.cs* to open it in the designer.
42
+
1. In **Solution Explorer**, double-click *Counter.cs* to open it in the designer.
43
43
44
44
2. Remove the **Click Here !** button that is included by default when you add the Windows Forms Toolbox Control item template.
45
45
@@ -61,7 +61,7 @@ The `Counter` control will expose a method to increment the counter, an event to
61
61
62
62
#### To code the user control
63
63
64
-
1. Double-click (or double-tap) the form to open its load event handler in the code window.
64
+
1. Double-click the form to open its load event handler in the code window.
65
65
66
66
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
67
@@ -124,7 +124,7 @@ The `Counter` control will expose a method to increment the counter, an event to
0 commit comments