diff --git a/aspnetcore/blazor/components.md b/aspnetcore/blazor/components.md index 2f4ca7fffb..f1c94b8296 100644 --- a/aspnetcore/blazor/components.md +++ b/aspnetcore/blazor/components.md @@ -299,13 +299,24 @@ Event handlers can also be asynchronous and return a ` change | `UIChangeEventArgs` | +| Keyboard | `UIKeyboardEventArgs` | +| Mouse | `UIMouseEventArgs` | +| Mouse pointer | `UIPointerEventArgs` | +| Mouse wheel | `UIWheelEventArgs` | +| Progress | `UIProgressEventArgs` | +| Touch | `UITouchEventArgs` – `UITouchPoint` represents a single contact point on a touch-sensitive device. | +For information on the properties and event handling behavior of the events in the preceding table, see [UIEventArgs](https://github.com/aspnet/AspNetCore/blob/master/src/Components/Components/src/UIEventArgs.cs) in the reference source. + Lambda expressions can also be used: ```cshtml