diff --git a/doc/articles/uno-community-toolkit-v8.md b/doc/articles/uno-community-toolkit-v8.md index ffd167cb2d71..9b5e3eb16901 100644 --- a/doc/articles/uno-community-toolkit-v8.md +++ b/doc/articles/uno-community-toolkit-v8.md @@ -194,15 +194,15 @@ The implementation of those are quite similar to the example of the SettingsCont 1. Import of the Package Change this: - + ```CommunityToolkit.WinUI.Controls.SettingsControls``` - + to Converters namespace: ```CommunityToolkit.WinUI.Converters``` while the Version will stay the same as above. - + 1. Add the related needed namespace(s) > [!NOTE] @@ -218,61 +218,61 @@ The implementation of those are quite similar to the example of the SettingsCont In case you are developing a App that's using C# Markup and you want to use the Converters, you can now switch to [C#-Markup Converters](https://platform.uno/docs/articles/external/uno.extensions/doc/Learn/Markup/Converters.html) Documentation for future Usage Guide, the general Import is done from here on. - 1. Xaml Definition - +1. Xaml Definition + Important Difference to the previous seen SettingsCard Control Example, a Non-UI Converter has to be imported to the Page.Ressources Section to StaticRessources like this for using it, since there is no single Namespace per Converter like on the Controls: ### [Example StringToVisibilityConverter](#tab/string-visible-conv) StringToVisibilityConverter is a Converter that has to be bound to a String typed Property and will return a Visibility State. - ``` - - - - ``` +```xml + + + +``` Somewhere in your Page Content: - - ```xml - -