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: blazor/toggle-switch-button/native-event.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -136,13 +136,13 @@ Mouse events fire when the user interacts with the Toggle Switch Button using th
136
136
137
137
**Event Types:**| Event | Behavior |
138
138
|---|---|
139
-
|**onclick**| Fires when the component is clicked |
140
-
|**ondblclick**| Fires when the component is double-clicked |
141
-
|**onmousedown**| Fires when a mouse button is pressed down |
142
-
|**onmouseup**| Fires when a mouse button is released |
143
-
|**onmousemove**| Fires as the mouse pointer moves over the component |
144
-
|**onmouseenter**| Fires when the mouse pointer enters the component area |
145
-
|**onmouseleave**| Fires when the mouse pointer leaves the component area |
139
+
|**OnClick**| Fires when the component is clicked |
140
+
|**OnDoubleClick**| Fires when the component is double-clicked |
141
+
|**OnMouseDown**| Fires when a mouse button is pressed down |
142
+
|**OnMouseUp**| Fires when a mouse button is released |
143
+
|**OnMouseMove**| Fires as the mouse pointer moves over the component |
144
+
|**OnMouseEnter**| Fires when the mouse pointer enters the component area |
145
+
|**OnMouseLeave**| Fires when the mouse pointer leaves the component area |
146
146
147
147
The following example demonstrates handling mouse events:
148
148
@@ -198,7 +198,7 @@ The following example demonstrates handling mouse events:
198
198
199
199
### Touch Events
200
200
201
-
Touch events fire when the user interacts with the Toggle Switch Button using touch input on touch-enabled devices (tablets, smartphones, etc.). The `TouchEventArgs` parameter provides information about touch points and their positions.
201
+
Touch events fire when the user interacts with the Toggle Switch Button using touch input on touch-enabled devices (tablets, smart phones, etc.). The `TouchEventArgs` parameter provides information about touch points and their positions.
0 commit comments