布拉佐里斯 选择默认值



有没有办法使用 在 Blazorise 中选择默认值?现在默认值为空,但我希望它说"3"。

<Select @bind-SelectedValue="@_someProperty">
@foreach (string number in _numbers)
{
<SelectItem Value="@number ">@number </SelectItem>
}
</Select>
@code
private static readonly string[] _numbers =
{
"1", "2", "3", "4", "5",
};

这是解决此问题的简单方法(只需添加一个具有初始值的变量(。 您还可以使用 SelectedValueChanged 手动处理自定义变量。

<Select @bind-SelectedValue="@_selectedProperty" SelectedValueChanged="@OnSelectedValueChanged">
@foreach (string number in _numbers)
{
<SelectItem Value="@number ">@number </SelectItem>
}
</Select>
@code
{
private string _selectedProperty = 3;
private static readonly string[] _numbers =
{
"1", "2", "3", "4", "5",
};
void OnSelectedValueChanged( string value )
{
_selectedProperty = value; // Bind to the custom variable
Console.WriteLine( selectedValue ); // Write in Console Just for Checking
}
}

相关内容

  • 没有找到相关文章

最新更新