Skip to content

Commit 29ad200

Browse files
authored
doc(QueryData): update IsFilter/IsSearch/IsSort comments (#7862)
* doc(QueryData): update IsFilter/IsSearch/IsSort comments * doc: 更新注释 * doc: 注释格式化
1 parent 7a882b8 commit 29ad200

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

src/BootstrapBlazor/Misc/QueryData.cs

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,29 +25,30 @@ public class QueryData<TItem>
2525
public int TotalCount { get; set; }
2626

2727
/// <summary>
28-
/// <para lang="zh">获得/设置 数据是否被过滤 默认为 false 未被过滤</para>
29-
/// <para lang="en">Gets or sets whether data is filtered default false</para>
28+
/// <para lang="zh">获得/设置 数据是否被过滤 默认为 false 未被过滤,设置为 true 表示数据已过滤组件内部不做任何处理,设置为 false 表示数据未过滤组件内部将进行过滤操作</para>
29+
/// <para lang="en">Gets or sets whether data is filtered. Default is false. Setting to true indicates data is already filtered and the component will not perform any filtering. Setting to false indicates data is not filtered and the component will perform filtering.</para>
3030
/// </summary>
31-
/// <remarks>组件内部通过此属性判断,如果外部未进行数据过滤,内部将进行数据过滤操作</remarks>
3231
public bool IsFiltered { get; set; }
3332

3433
/// <summary>
35-
/// <para lang="zh">获得/设置 数据是否被排序 默认为 false 未被排序</para>
36-
/// <para lang="en">Gets or sets whether data is sorted default false</para>
34+
/// <para lang="zh">获得/设置 数据是否被排序 默认为 false 未被排序,设置为 true 表示数据已排序组件内部不做任何处理,设置为 false 表示数据未排序组件内部将进行排序操作</para>
35+
/// <para lang="en">Gets or sets whether data is sorted. Default is false. Setting to true indicates data is already sorted and the component will not perform any sorting. Setting to false indicates data is not sorted and the component will perform sorting.</para>
3736
/// </summary>
3837
public bool IsSorted { get; set; }
3938

4039
/// <summary>
41-
/// <para lang="zh">获得/设置 数据是否已处理 SearchText <see cref="Table{TItem}.SearchText"/> 默认为 false</para>
42-
/// <para lang="en">Gets or sets whether data has processed SearchText <see cref="Table{TItem}.SearchText"/> default false</para>
40+
/// <para lang="zh">获得/设置 数据是否被搜索 默认为 false 未被搜索,设置为 true 表示数据已搜索组件内部不做任何处理,设置为 false 表示数据未搜索组件内部将进行搜索操作</para>
41+
/// <para lang="en">Gets or sets whether data is searched. Default is false. Setting to true indicates data is already searched and the component will not perform any searching. Setting to false indicates data is not searched and the component will perform searching.</para>
4342
/// </summary>
44-
/// <remarks>设置本属性为 true 时,Table 组件的高级搜索按钮改变颜色</remarks>
4543
public bool IsSearch { get; set; }
4644

4745
/// <summary>
4846
/// <para lang="zh">获得/设置 数据是否为已处理自定义高级搜索 <see cref="Table{TItem}.CustomerSearchTemplate"/> 默认为 false</para>
4947
/// <para lang="en">Gets or sets whether data has processed custom advanced search <see cref="Table{TItem}.CustomerSearchTemplate"/> default false</para>
5048
/// </summary>
51-
/// <remarks>设置本属性为 true 时,Table 组件的高级搜索按钮改变颜色</remarks>
49+
/// <remarks>
50+
/// <para lang="zh">设置本属性为 true 时,Table 组件的高级搜索按钮改变颜色</para>
51+
/// <para lang="en">When this property is set to true, the advanced search button of the Table component changes color</para>
52+
///</remarks>
5253
public bool IsAdvanceSearch { get; set; }
5354
}

0 commit comments

Comments
 (0)