File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
src/BootstrapBlazor/Components/Tab Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1010namespace BootstrapBlazor . Components ;
1111
1212/// <summary>
13- /// Tab 组件
13+ /// Tab component
1414/// </summary>
1515public 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 ; }
You can’t perform that action at this time.
0 commit comments