You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <para>Gets or sets a value indicating whether the "active" state should be used when the associated value is null.</para>
30
+
/// 获得/设置 值为 null 时是否使用第一个选项或者标记为 active 的候选项作为默认值
31
+
/// <para>Gets or sets a value indicating Whether to use the first option or the candidate marked as active as the default value when the value is null</para>
32
32
/// </summary>
33
33
[Parameter]
34
-
publicboolIsUseActiveWhenValueIsNull{get;set;}
34
+
[Obsolete("已弃用,请使用 IsUseDefaultItemWhenValueIsNull 参数代替;Deprecated, use the IsUseDefaultItemWhenValueIsNull parameter instead")]
35
+
[ExcludeFromCodeCoverage]
36
+
publicboolIsUseActiveWhenValueIsNull
37
+
{
38
+
get=>IsUseDefaultItemWhenValueIsNull;
39
+
set=>IsUseDefaultItemWhenValueIsNull=value;
40
+
}
41
+
42
+
/// <summary>
43
+
/// 获得/设置 值为 null 时是否使用第一个选项或者标记为 active 的候选项作为默认值
44
+
/// <para>Gets or sets a value indicating Whether to use the first option or the candidate marked as active as the default value when the value is null</para>
0 commit comments