blazor parent parameter code example

Example 1: how to pass property between blazor components

@inject Services.AppData AppData
<div style="width:300px; height:100px; background-color:@AppData.Color">
    <h3>Display Component</h3>
    <p>You entered the number @AppData.Number.</p>
</div>

@code {
    protected override void OnInitialized()
    {
        AppData.OnChange += StateHasChanged;
    }
}

Example 2: how to pass property between blazor components

services.AddScoped<Services.AppData>();

Tags:

Misc Example