Update appunti Radzen

This commit is contained in:
Samuele Locatelli
2024-09-06 08:47:45 +02:00
parent 2dde594e40
commit c29dcd8fc9
2 changed files with 26 additions and 0 deletions
@@ -19,6 +19,18 @@
</RadzenCard>
@code {
/* ------------------------------------------------
* Radzen Blazor
* https://www.radzen.com/blazor-components/
* dettagli installazione:
* NET6: https://blazor.radzen.com/get-started/net6-server
* NET8: https://blazor.radzen.com/get-started/net8
*
* demo compo
* https://github.com/radzenhq/radzen-blazor/blob/master/RadzenBlazorDemos/Shared/EventConsole.razor
* ------------------------------------------------*/
class Message
{
public DateTime Date { get; set; }
@@ -48,6 +48,20 @@
</div>
@code {
/* ------------------------------------------------
* Radzen Blazor
* https://www.radzen.com/blazor-components/
*
* dettagli installazione:
* NET6: https://blazor.radzen.com/get-started/net6-server
* NET8: https://blazor.radzen.com/get-started/net8
*
* Test componente Scheduler:
* https://blazor.radzen.com/scheduler?theme=material3
* https://blazor.radzen.com/docs/guides/components/scheduler.html
* ------------------------------------------------*/
RadzenScheduler<Appointment> scheduler;
EventConsole console;
Dictionary<DateTime, string> events = new Dictionary<DateTime, string>();