0%

KeyVisual

1
public sealed class KeyVisual : Control

We moved all namespaces into a single namespace. No matter which (WinUICommunity) library you use, the namespace is always as follows
For use in the Xaml:
xmlns:wuc="using:WinUICommunity"
For use in the Csharp:
using WinUICommunity;

Attributes

Name
VisualType
Content
IsError

Example

1
2
3
<wuc:KeyVisual IsTabStop="False" VisualType="SmallOutline" Content="Ctrl+F5" />
<wuc:KeyVisual IsTabStop="False" VisualType="Small" Content="Ctrl+F5" />
<wuc:KeyVisual IsTabStop="False" VisualType="Large" Content="Ctrl+F5" />

Demo

you can run demo and see this feature.

WinUICommunity