WinUICommunity
everything can be handy
We moved all namespaces into a single namespace. No matter which (WinUICommunity) library you use, the namespace is always as followsFor use in the Xaml:xmlns:wuc="using:WinUICommunity"For use in the Csharp:using WinUICommunity;
xmlns:wuc="using:WinUICommunity"
using WinUICommunity;
1
<wuc:InlineAutoCompleteTextBox IsSuggestionCaseSensitive="False" SuggestionsSource="{x:Bind DemoSuggestions, Mode=OneWay}"/>
123456789
private List<string> DemoSuggestions { get; } = new();public MainWindow(){ this.InitializeComponent(); DemoSuggestions.Add("Ted Mosby"); DemoSuggestions.Add("Marshal Eriksen"); DemoSuggestions.Add("Barney Stinson");}
you can run demo and see this feature.