Ghost1372

everything can be handy

InlineAutoCompleteTextBox

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
IsSuggestionCaseSensitive
SuggestionsSource
SuggestionForeground
SuggestionPrefix
SuggestionSuffix

Example

1
<wuc:InlineAutoCompleteTextBox IsSuggestionCaseSensitive="False" SuggestionsSource="{x:Bind DemoSuggestions, Mode=OneWay}"/>
1
2
3
4
5
6
7
8
9
private List<string> DemoSuggestions { get; } = new();

public MainWindow()
{
this.InitializeComponent();
DemoSuggestions.Add("Ted Mosby");
DemoSuggestions.Add("Marshal Eriksen");
DemoSuggestions.Add("Barney Stinson");
}

WinUICommunity

Demo

you can run demo and see this feature.

0%