From 9379b1a0e043b824d2d3a51f4a624a340f1e4d07 Mon Sep 17 00:00:00 2001 From: Aaron Date: Fri, 9 Jul 2021 18:36:04 -0500 Subject: [PATCH] Update index.md (#1108) --- dotnet-desktop-guide/net/wpf/data/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotnet-desktop-guide/net/wpf/data/index.md b/dotnet-desktop-guide/net/wpf/data/index.md index ba7e899..e7d42d1 100644 --- a/dotnet-desktop-guide/net/wpf/data/index.md +++ b/dotnet-desktop-guide/net/wpf/data/index.md @@ -388,7 +388,7 @@ A object checks whether the value - A checks for exceptions thrown during the update of the binding source property. In the previous example, `StartPrice` is of type integer. When the user enters a value that cannot be converted to an integer, an exception is thrown, causing the binding to be marked as invalid. An alternative syntax to setting the explicitly is to set the property to `true` on your or object. -- A object checks for errors that are raised by objects that implement the interface. For an example of using this validation rule, see . An alternative syntax to setting the explicitly is to set the property to `true` on your or object. +- A object checks for errors that are raised by objects that implement the interface. For more information about using this validation rule, see . An alternative syntax to setting the explicitly is to set the property to `true` on your or object. You can also create your own validation rule by deriving from the class and implementing the method. The following example shows the rule used by the *Add Product Listing* "Start Date" from the [What is data binding](#what-is-data-binding) section.