Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewKeepCoding committed May 2, 2022
1 parent b417934 commit 3d4ea5a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,18 @@ The AK.Toolkit will be a collection of controls, helpers, etc... stuff that I ne
### 💻 AutoCompleteTextBox

A TextBox control that shows a suggestion based on input.
The suggestion is shown inside the TextBox control by overriding the placeholder feature.
Suggestions need to be provided by the SuggestionsSource property.
AutoCompleteTextBox shows a suggestion **inside** the TextBox control.

```xaml
<toolkit:AutoCompleteTextBox
IsSuggestionCaseSensitive="false"
PlaceholderText="Enter your text here..."
SuggestionForeground="HotPink"
SuggestionPrefix="..."
SuggestionSuffix=" ? [Press Right]"
SuggestionsSource="{x:Bind Suggestions, Mode=OneWay}" />
```

![AutoCompleteTextBox Screenshot](Assets/auto-complete-textbox-screenshot.png)
![AutoCompleteTextBox Screenshot](Assets/auto-complete-textbox-sample-screenshot.png)

## 🛠️ Utilities

Expand Down

0 comments on commit 3d4ea5a

Please sign in to comment.