Skip to content

Commit

Permalink
doc(Table): update ShowEditButton/ShowDeleteButton document (#2214)
Browse files Browse the repository at this point in the history
* doc: update ShowDeleteButton 注释文档

* doc: update ShowEditButton 注释文档
  • Loading branch information
ArgoZhang authored Oct 4, 2023
1 parent c6bb664 commit 2eed809
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/BootstrapBlazor/Components/Table/Table.razor.Toolbar.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ public partial class Table<TItem>
public bool ShowAddButton { get; set; } = true;

/// <summary>
/// 获得/设置 是否显示编辑按钮 默认为 true 行内是否显示请使用 <see cref="ShowExtendEditButton"/> 与 <see cref="ShowEditButtonCallback" />
/// 获得/设置 是否显示编辑按钮 默认为 true 行内是否显示请使用 <see cref="ShowExtendEditButton"/> 与 <see cref="ShowExtendEditButtonCallback" />
/// </summary>
[Parameter]
public bool ShowEditButton { get; set; } = true;

/// <summary>
/// 获得/设置 是否显示删除按钮 默认为 true 行内是否显示请使用 <see cref="ShowExtendDeleteButton"/> 与 <see cref="ShowDeleteButtonCallback" />
/// 获得/设置 是否显示删除按钮 默认为 true 行内是否显示请使用 <see cref="ShowExtendDeleteButton"/> 与 <see cref="ShowExtendDeleteButtonCallback" />
/// </summary>
[Parameter]
public bool ShowDeleteButton { get; set; } = true;
Expand Down

0 comments on commit 2eed809

Please sign in to comment.