<input type="text" @bind="CurrentValue" />
@code {
private string CurrentValue = "test";
}
요로케만 해주면... CurrentValue 와 바인딩 되어 언제든지 가져다 쓸수 있따..
Chagne Event 를 사용하고싶으면 여러가지 방식이 있다..
일단 나는 람다 방식은 너무 싫어하는 사람중에 한명이라 람다 방식말고 기본방식으로
<input type="text" @bind="CurrentValue" @onkeypress="CurrentValue_OnKeypress" />
@code {
private string CurrentValue;
void CurrentValue_OnKeypress(KeyboardEventArgs e)
{
System.Diagnostics.Debug.WriteLine(CurrentValue);
}
}
'SoftWare > ASP.net Core Blazor' 카테고리의 다른 글
[ASP.NET Blazor] Tab based Template 탭 페이지 템플릿 (0) | 2020.08.23 |
---|---|
[ASP.NET Blazor] C# code 에서 Page Redirect 시키기 페이지이동 (0) | 2020.08.23 |
[ASP.NET Blazor] <select> Element onchange event (0) | 2020.08.22 |
[ASP.NET Blazor] Page Load Event (0) | 2020.08.22 |
ASP.NET Blazor 장점 및 비교 (5) | 2020.08.22 |
댓글