How to execute the form submit in Button click using ICommand
How to pass parameter in ICommand execute
@using System.Windows.Input<button @onclick="buttonClick"> Blazor Button</button>@code { private ICommand _command; public ICommand Command { get => _command; set => _command = value; } private void buttonClick() { this.Command?.Execute(null); }}