SeemGen/Components/Partials/DialogCardPage.razor

24 lines
539 B
Plaintext

@page "/dialogcard/{OrderID}"
@using Microsoft.EntityFrameworkCore
@inject Radzen.DialogService dialogService
<RadzenStack Gap="1rem" Orientation="Orientation.Vertical" JustifyContent="JustifyContent.SpaceBetween" Style="height: 100%;">
<RadzenStack>
</RadzenStack>
</RadzenStack>
@code {
[Parameter] public int OrderID { get; set; }
[Parameter] public bool ShowClose { get; set; } = true;
protected override async Task OnParametersSetAsync()
{
await base.OnParametersSetAsync();
}
}