- However Blazorise has many more extensions at your disposal.
- You can find them here.
-
-
-
- Please visit the official Blazorise Demo for component examples.
-
-
- Please visit the official Blazorise Documentation to learn more about the available components.
-
-
diff --git a/src/Elektrifikatsiya/Elektrifikatsiya/Pages/Dashboard.razor.cs b/src/Elektrifikatsiya/Elektrifikatsiya/Pages/Dashboard.razor.cs
new file mode 100644
index 0000000..ed25e93
--- /dev/null
+++ b/src/Elektrifikatsiya/Elektrifikatsiya/Pages/Dashboard.razor.cs
@@ -0,0 +1,28 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+using Microsoft.AspNetCore.Components;
+using System.Net.Http;
+using Microsoft.AspNetCore.Authorization;
+using Microsoft.AspNetCore.Components.Authorization;
+using Microsoft.AspNetCore.Components.Forms;
+using Microsoft.AspNetCore.Components.Routing;
+using Microsoft.AspNetCore.Components.Web;
+using Microsoft.AspNetCore.Components.Web.Virtualization;
+using Microsoft.JSInterop;
+using Elektrifikatsiya;
+using Blazorise;
+
+namespace Elektrifikatsiya.Pages
+{
+ public partial class Dashboard
+ {
+ string bgcolor { get; set; } = "00f"; // (starting value)
+ void SetColor()
+ {
+ bgcolor = "#fd7";
+ StateHasChanged(); // may not be required, but I'm at work right now, so can't check
+ }
+ }
+}
\ No newline at end of file