Skip to content

Attributes

Name
IsSuggestionCaseSensitive
SuggestionsSource
SuggestionForeground
SuggestionPrefix
SuggestionSuffix

Example

xml
<dev:InlineAutoCompleteTextBox IsSuggestionCaseSensitive="False" SuggestionsSource="{x:Bind DemoSuggestions, Mode=OneWay}"/>
cs
private List<string> DemoSuggestions { get; } = new();

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

InlineAutoComplete

Demo

you can run demo and see this feature.

Released under the MIT License.