From a72a43dc1cf8b3bc4b6b8ecf11a77ba23370bdea Mon Sep 17 00:00:00 2001 From: Jochem <29899660+JochCool@users.noreply.github.com> Date: Mon, 18 Jan 2021 20:11:11 +0100 Subject: [PATCH] Added missing closing bracket (#167) --- dotnet-desktop-guide/net/wpf/data/data-binding-overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotnet-desktop-guide/net/wpf/data/data-binding-overview.md b/dotnet-desktop-guide/net/wpf/data/data-binding-overview.md index 957b84d..e4adc97 100644 --- a/dotnet-desktop-guide/net/wpf/data/data-binding-overview.md +++ b/dotnet-desktop-guide/net/wpf/data/data-binding-overview.md @@ -89,7 +89,7 @@ This figure illustrates the different types of data flow: - binding causes changes to the source property to automatically update the target property, but changes to the target property are not propagated back to the source property. This type of binding is appropriate if the control being bound is implicitly read-only. For instance, you may bind to a source such as a stock ticker, or perhaps your target property has no control interface provided for making changes, such as a data-bound background color of a table. If there is no need to monitor the changes of the target property, using the binding mode avoids the overhead of the binding mode. -- binding causes changes to either the source property or the target property to automatically update the other. This type of binding is appropriate for editable forms or other fully interactive UI scenarios. Most properties default to binding, but some dependency properties (typically properties of user-editable controls such as the and [CheckBox.IsChecked](xref:System.Windows.Controls.Primitives.ToggleButton.IsChecked) default to binding. A programmatic way to determine whether a dependency property binds one-way or two-way by default is to get the property metadata with and then check the Boolean value of the property. +- binding causes changes to either the source property or the target property to automatically update the other. This type of binding is appropriate for editable forms or other fully interactive UI scenarios. Most properties default to binding, but some dependency properties (typically properties of user-editable controls such as the and [CheckBox.IsChecked](xref:System.Windows.Controls.Primitives.ToggleButton.IsChecked)) default to binding. A programmatic way to determine whether a dependency property binds one-way or two-way by default is to get the property metadata with and then check the Boolean value of the property. - is the reverse of binding; it updates the source property when the target property changes. One example scenario is if you only need to reevaluate the source value from the UI.