Callback1 blazor Callback parameter (and event call) blazor에서 callback parameter을 이용하여 부모(parent) 자식(child) 간 파라미터 전달 또는 이벤트 실행 [parent] @code { private void HandleResult(string result) { // Handle the result from the component Console.WriteLine(result); } } [child] Do Work @code { [Parameter] public EventCallback Callback { get; set; } private void DoWork() { // Do some work var result = "Work completed"; // Raise the callback event and pass the.. 2023. 1. 17. 이전 1 다음