parent
d6ee4bc164
commit
a9282b9b0a
@ -0,0 +1,29 @@
|
||||
@page "/formwizard"
|
||||
@using Connected.Classes.FormWizard;
|
||||
@using Connected.Components;
|
||||
@using Connected.Enums;
|
||||
@using Connected.Models.Modal;
|
||||
@using Connected.Models;
|
||||
@using Connected.Services;
|
||||
@using Connected.Utilities;
|
||||
|
||||
<h1 style="text-align:center;">FORM WIZARD EXAMPLE</h1>
|
||||
|
||||
<FormWizard Options="@options">
|
||||
<FormWizardStep>
|
||||
Step 1
|
||||
</FormWizardStep>
|
||||
<FormWizardStep>
|
||||
Step2
|
||||
</FormWizardStep>
|
||||
<FormWizardStep>
|
||||
Step3
|
||||
</FormWizardStep>
|
||||
<FormWizardStep>
|
||||
Step4
|
||||
</FormWizardStep>
|
||||
</FormWizard>
|
||||
|
||||
@code {
|
||||
FormWizardOptions options = new(false, "Naslednji", "Prejšnji", "Končaj", "Prekliči");
|
||||
}
|
@ -0,0 +1,25 @@
|
||||
@page "/toggleglyph"
|
||||
@using Connected.Components;
|
||||
@using Connected.Enums;
|
||||
@using Connected.Models.Modal;
|
||||
@using Connected.Models;
|
||||
@using Connected.Services;
|
||||
@using Connected.Utilities;
|
||||
|
||||
@inject ModalDialogService modalDialog;
|
||||
|
||||
|
||||
<h1 style="text-align:center;">DATE PICKER EXAMPLE</h1>
|
||||
|
||||
|
||||
<ToggleGlyphButton Glyph="@Icons.Material.Filled.Close" ToggledGlyph="@Icons.Material.Filled.Check" @bind-Toggled=toggle>
|
||||
TGB
|
||||
</ToggleGlyphButton>
|
||||
|
||||
|
||||
<h4>Toggled: @toggle</h4>
|
||||
|
||||
|
||||
@code {
|
||||
bool toggle = false;
|
||||
}
|
Loading…
Reference in new issue