You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
436 B
21 lines
436 B
@page "/event-handler-example-3"
|
|
|
|
@for (var i = 0; i < 4; i++)
|
|
{
|
|
<p>
|
|
<button @onclick="ReportPointerLocation">
|
|
Where's my mouse pointer for this button?
|
|
</button>
|
|
</p>
|
|
}
|
|
|
|
<p>@mousePointerMessage</p>
|
|
|
|
@code {
|
|
private string? mousePointerMessage;
|
|
|
|
private void ReportPointerLocation(MouseEventArgs e)
|
|
{
|
|
mousePointerMessage = $"Mouse coordinates: {e.ScreenX}:{e.ScreenY}";
|
|
}
|
|
} |