📌  相关文章
📜  blazor onchange 事件未使用 inputselect 触发 - C# 代码示例

📅  最后修改于: 2022-03-11 14:49:11.507000             🧑  作者: Mango

代码示例2
private Task OnValueChanged(string value)
{
    // Assign the selected value to the Model 
    comment.Country = value;
   return Task.CompletedTask;
}