mirror of
https://github.com/lantean-code/qbtmud.git
synced 2025-10-23 04:52:22 +00:00
16 lines
379 B
Plaintext
16 lines
379 B
Plaintext
@inherits MudSwitch<T>
|
|
@typeparam T
|
|
@{
|
|
base.BuildRenderTree(__builder);
|
|
}
|
|
|
|
@code{
|
|
protected override void OnParametersSet()
|
|
{
|
|
if (Value is bool boolValue)
|
|
{
|
|
this.ThumbIcon = boolValue ? Icons.Material.Filled.Done : Icons.Material.Filled.Close;
|
|
this.ThumbIconColor = boolValue ? Color.Success : Color.Error;
|
|
}
|
|
}
|
|
} |