Web-Development-with-Blazor.../Chapter06/MyBlog/Components/Pages/SetFocus.razor

8 lines
158 B
Plaintext
Raw Normal View History

2023-02-17 15:28:17 +01:00
@page "/setfocus"
<input @ref="textInput" />
<button @onclick="() => textInput.FocusAsync()">Set focus</button>
@code {
ElementReference textInput;
}