Skip to content

AutoCompleteEntry added.

Pre-release
Pre-release
Compare
Choose a tag to compare
@enisn enisn released this 04 Mar 08:01
· 652 commits to develop since this release
927cc8f

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.