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
Text
Example
1 2 3 4 5 6 7 8 9 10
<CheckBoxName="check"> <StackPanelOrientation="Vertical"> <TextBlockx:Name="IncludeInGlobalResultTitle" Margin="0,10,0,0" Text="Include in global result" /> <wuc:IsEnabledTextBlockFontSize="{StaticResource SecondaryTextFontSize}" IsEnabled="{Binding ElementName=check, Path=IsChecked}" Text="Show results on queries without direct activation command" /> </StackPanel> </CheckBox>