I am new to and playing with MS Blazor on the new .Net5 framework. I am attempting to set the focus of a text element when a button is clicked. I have seen this code elsewhere and trying to get it to compile:
<button @onclick="() => textInput.FocusAsync()">Set focus</button><input @ref="textInput"/>
VS2019 is throwing an error on the textInput value: The name 'textInput' does not exist in the current context.
Any help is appreciated.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…