Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/BootstrapBlazor/Components/Button/ButtonBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ public abstract class ButtonBase : TooltipWrapperBase
public bool IsDisabled { get; set; }

/// <summary>
/// 获得/设置 点击时间是否向上传播 默认 false
/// 获得/设置 点击事件是否向上传播 默认 false
/// </summary>
[Parameter]
public bool StopPropagation { get; set; }
Expand Down
4 changes: 2 additions & 2 deletions src/BootstrapBlazor/Components/Button/SlideButton.razor.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Licensed to the .NET Foundation under one or more agreements.
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the Apache 2.0 License
// See the LICENSE file in the project root for more information.
// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone
Expand Down Expand Up @@ -55,7 +55,7 @@ public partial class SlideButton
public Color Color { get; set; } = Color.Primary;

/// <summary>
/// 获得/设置 按钮颜色
/// 获得/设置 展开项显示位置
/// </summary>
[Parameter]
public Placement Placement { get; set; }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
// Licensed to the .NET Foundation under one or more agreements.
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the Apache 2.0 License
// See the LICENSE file in the project root for more information.
// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone

namespace BootstrapBlazor.Components;

/// <summary>
/// DataTime filter component
/// DateTime filter component
/// </summary>
public partial class DateTimeFilter
{
Expand Down
Loading