Web-Development-with-Blazor.../Chapter09/MyBlog/Components/Pages/SetFocus.razor
2023-02-17 15:28:17 +01:00

8 lines
158 B
Plaintext

@page "/setfocus"
<input @ref="textInput" />
<button @onclick="() => textInput.FocusAsync()">Set focus</button>
@code {
ElementReference textInput;
}