From 5511996f035b5691c03d7c9e7d6199e859870629 Mon Sep 17 00:00:00 2001 From: Luke Latham <1622880+guardrex@users.noreply.github.com> Date: Tue, 12 Dec 2023 09:07:20 -0500 Subject: [PATCH] Improve language --- aspnetcore/blazor/components/event-handling.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/blazor/components/event-handling.md b/aspnetcore/blazor/components/event-handling.md index 08eddb507a53..b8eb0fb2f819 100644 --- a/aspnetcore/blazor/components/event-handling.md +++ b/aspnetcore/blazor/components/event-handling.md @@ -470,7 +470,7 @@ Alternatively, use a `foreach` loop with . A parent component can assign a callback method to a child component's . +A common scenario with nested components is executing a method in a parent component when a child component event occurs. An `onclick` event occurring in the child component is a common use case. To expose events across components, use an . A parent component can assign a callback method to a child component's . The following `Child` component demonstrates how a button's `onclick` handler is set up to receive an delegate from the sample's `ParentComponent`. The is typed with , which is appropriate for an `onclick` event from a peripheral device.