Ejemplo n.º 1
0
 public async Task AddCSS(string Url)
 {
     if (!Url.StartsWith("http"))
     {
         Url = ThemePath() + Url;
     }
     var interop = new Interop(JSRuntime);
     await interop.AddCSS("Theme:" + Utilities.CreateIdFromUrl(Url), Url);
 }