mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-07-08 18:16:08 +00:00
30 lines
697 B
Plaintext
30 lines
697 B
Plaintext
@using Microsoft.AspNetCore.Components
|
|
@using Radzen.Blazor
|
|
@inherits LayoutComponentBase
|
|
@inject ExampleService ExampleService
|
|
@inject NavigationManager UriHelper
|
|
@inject IJSRuntime JSRuntime
|
|
|
|
<RadzenComponents />
|
|
|
|
<RadzenLayout>
|
|
<RadzenBody Class="rz-m-0 rz-p-0 rz-border-radius-0 radzen-blazor">
|
|
<RadzenContentContainer Name="main">
|
|
@Body
|
|
</RadzenContentContainer>
|
|
</RadzenBody>
|
|
</RadzenLayout>
|
|
|
|
@code {
|
|
|
|
IEnumerable<Example> examples;
|
|
|
|
protected override void OnInitialized()
|
|
{
|
|
|
|
examples = ExampleService.Examples;
|
|
|
|
System.Threading.Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo("en-US");
|
|
}
|
|
}
|