Skip to content

Commit bc9f677

Browse files
authored
Cross-link property binding in Blazor forms topic (#18338)
1 parent d736320 commit bc9f677

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

aspnetcore/blazor/forms-validation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ In the preceding example:
5454

5555
* The form validates user input in the `name` field using the validation defined in the `ExampleModel` type. The model is created in the component's `@code` block and held in a private field (`exampleModel`). The field is assigned to the `Model` attribute of the `<EditForm>` element.
5656
* The `InputText` component's `@bind-Value` binds:
57-
* The model property (`exampleModel.Name`) to the `InputText` component's `Value` property.
57+
* The model property (`exampleModel.Name`) to the `InputText` component's `Value` property. For more information on property binding, see <xref:blazor/data-binding#parent-to-child-binding-with-component-parameters>.
5858
* A change event delegate to the `InputText` component's `ValueChanged` property.
5959
* The `DataAnnotationsValidator` component attaches validation support using data annotations.
6060
* The `ValidationSummary` component summarizes validation messages.

0 commit comments

Comments
 (0)