728x90
728x170
ComponentBase 상속받은 클래스를 정의합니다.
TestComponent.cs
using Microsoft.AspNetCore.Components;
namespace Blazor.AppTest.Components
{
public class TestComponent : ComponentBase
{
public string? ButtonText;
public int Value = 0;
protected override Task OnInitializedAsync()
{
ButtonText = "Increment";
return base.OnInitializedAsync();
}
public void IncrementCount()
{
this.Value += 1;
StateHasChanged();
}
}
}
razor 페이지에서 위 정의한 클래스를 @inherits 을 이용해 TestComponent 를 상속받게합니다.
@page "/componenttest"
@using Blazor.AppTest.Components
@inherits TestComponent
<h3>Component Test</h3>
<button class="btn btn-primary" @onclick="IncrementCount">@ButtonText (@Value)</button>
결과
[Source]
https://github.com/kei-soft/Blazor.AppTest/tree/master/Blazor.MSDocTest
728x90
그리드형
'C# > Blazor' 카테고리의 다른 글
[Blazor] StateHasChanged (0) | 2022.12.26 |
---|---|
[Blazor] RenderFragment 사용하기 (0) | 2022.12.26 |
[Blazor] Parameter 필수 처리하기 - EditorRequired (0) | 2022.12.26 |
[Blazor] Route constraints (경로 제약 조건) (0) | 2022.12.23 |
[Blazor] Route parameters (경로 매개 변수) (0) | 2022.12.23 |