We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f896db7 commit 7ca524eCopy full SHA for 7ca524e
src/BootstrapBlazor/Components/Button/ButtonBase.cs
@@ -67,7 +67,7 @@ public abstract class ButtonBase : TooltipWrapperBase
67
public Func<Task>? OnClickWithoutRender { get; set; }
68
69
/// <summary>
70
- /// 获得/设置 按钮颜色
+ /// 获得/设置 按钮颜色 默认 <see cref="Color.Primary"/>
71
/// </summary>
72
[Parameter]
73
public virtual Color Color { get; set; } = Color.Primary;
src/BootstrapBlazor/Components/Button/ToggleButton.razor.cs
@@ -50,7 +50,10 @@ private async Task OnClickButton()
50
}
51
52
53
- private async Task HandlerClick()
+ /// <summary>
54
+ /// <inheritdoc/>
55
+ /// </summary>
56
+ protected override async Task HandlerClick()
57
{
58
IsActive = !IsActive;
59
if (OnClickWithoutRender != null)
0 commit comments