From 783ec7f2ae64a7e38cb256217d880564459de6f9 Mon Sep 17 00:00:00 2001 From: Aleksei Smirnov Date: Sun, 19 Jan 2025 13:00:03 +0300 Subject: [PATCH] Add example of using MultiBinding with Built-in converters --- .../reference/built-in-data-binding-converters.md | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) 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