I'm currently trying to develop Outlook "Send to" field like autocomplete text box with suggestions, tokenized inputs. Currently I'm trying to develop it using TokenizedTextBox of WPF extended toolkit ( which is not officially available in the released) which is available in their source code. source site Have anyone used this ?
Edited: Can anyone give me an example of how to use TokenizedTextBox, I just can't get the autocomplete list. code below
<Grid>
<xctk:TokenizedTextBox Name="testtokenized" Margin="0,25,0,240" >
</xctk:TokenizedTextBox>
</Grid>
testtokenized.ItemsSource = new string[] { "hey", "Bye", "goodmorning", "goodnight", "OrionCity" };