AutoCompleteEntry added.
Pre-release
Pre-release
About Pre-Release
This prerelease is completely stable. But most of features are missing for AutoCompleteEntry and some of them doesn't work yet. That's why it's a pre-release. Click here to NuGet version
What's new?
- AutoCompleteEntry added. And it derives from AdvancedEntry. (Most of Advancedentry features doesn't work yet)
Usage of AutoCompleteEntry
Sample ViewModel:
//...
public List<string> SuggestionsList { get; set; } = new List<string> { "Test 1", "Test 2", "Option 1", "Option 2", "Another One" };
//...
Sample XAML:
<input:AutoCompleteEntry Title"Type something!" ItemsSource="{Binding SuggestionsList}" />
And the magic happens! try to type something and suggestions will be apperaed.