Shiny Controls v1.0 - The Ultra Control Suite for .NET MAUI & BlazorO...M...G!
Usage Examples
Code-Behind
Section titled “Code-Behind”var localizer = services.GetRequiredService<MyViewModelLocalized>();
// Simple string propertyConsole.WriteLine(localizer.Welcome);
// Format string methodConsole.WriteLine(localizer.UserGreetingFormat("Allan", "MyApp"));// Output: Hello Allan, welcome to MyApp!XAML Binding (MAUI)
Section titled “XAML Binding (MAUI)”<Label Text="{Binding Localizer.Welcome}" />Blazor / Razor
Section titled “Blazor / Razor”@inject MyViewModelLocalized Localizer
<h1>@Localizer.Welcome</h1><p>@Localizer.UserGreetingFormat(User.Name, "MyApp")</p>Raw Localizer Access
Section titled “Raw Localizer Access”The generated class exposes the underlying IStringLocalizer for edge cases:
// Dynamic key lookup when you need itvar value = localizer.Localizer["SomeDynamicKey"];Configuration
Section titled “Configuration”Generate classes with internal instead of public access:
<PropertyGroup> <GenerateLocalizersInternal>True</GenerateLocalizersInternal></PropertyGroup>AI Coding Assistant
Section titled “AI Coding Assistant”Step 1 — Add the marketplace:
claude plugin marketplace add shinyorg/skillsStep 2 — Install the plugin:
claude plugin install shiny@shinyOne plugin installs all 35 Shiny skills. Your agent loads only the skill relevant to what you're building, so there's no cost to having them all available.
Step 1 — Add the marketplace:
copilot plugin marketplace add https://github.com/shinyorg/skillsStep 2 — Install the plugin:
copilot plugin install shiny@shinyOne plugin installs all 35 Shiny skills. Your agent loads only the skill relevant to what you're building, so there's no cost to having them all available.


