diff --git a/docs/reference/built-in-data-binding-converters.md b/docs/reference/built-in-data-binding-converters.md index b0da890c3..36c5dddb6 100644 --- a/docs/reference/built-in-data-binding-converters.md +++ b/docs/reference/built-in-data-binding-converters.md @@ -58,7 +58,7 @@ This example binding will hide the text block if its bound text is null or empty Converter={x:Static StringConverters.IsNotNullOrEmpty}}"/> ``` -And this example will hide the content control if the bound object is null or empty: +This example will hide the content control if the bound object is null or empty: ```xml ``` +And this example demonstrates binding to multiple bound parameters. It will show the text block if the `MyText` property of the bound object is not null or empty and the `IsMyNotEmptyTextVisible` property is set to `true`: + +```xml + + + + + + + + +``` + ## More Information