Skip to content

Commit a3256fe

Browse files
committed
doc: 更新注释
1 parent ad53d08 commit a3256fe

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/BootstrapBlazor/Components/Tab/Tab.razor.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
namespace BootstrapBlazor.Components;
1111

1212
/// <summary>
13-
/// Tab 组件
13+
/// Tab component
1414
/// </summary>
1515
public partial class Tab : IHandlerException
1616
{
@@ -58,25 +58,25 @@ public partial class Tab : IHandlerException
5858
private readonly List<TabItem> _draggedItems = new(50);
5959

6060
/// <summary>
61-
/// 获得/设置 TabItem 集合
61+
/// Gets the collection of tab items.
6262
/// </summary>
6363
public IEnumerable<TabItem> Items => TabItems;
6464

6565
private List<TabItem> TabItems => _dragged ? _draggedItems : _items;
6666

6767
/// <summary>
68-
/// 获得/设置 是否为排除地址 默认 false
68+
/// Gets or sets the excluded link. Default is false.
6969
/// </summary>
7070
private bool Excluded { get; set; }
7171

7272
/// <summary>
73-
/// 获得/设置 是否为卡片样式 默认 false
73+
/// Gets or sets whether card style. Default is false.
7474
/// </summary>
7575
[Parameter]
7676
public bool IsCard { get; set; }
7777

7878
/// <summary>
79-
/// 获得/设置 是否为带边框卡片样式 默认 false
79+
/// Gets or sets whether border card style. Default is false.
8080
/// </summary>
8181
[Parameter]
8282
public bool IsBorderCard { get; set; }

0 commit comments

Comments
 (0)