c# - AutoCompleteBox navigate to tapped result -


i have autocompletebox:

<toolkit:autocompletebox itemssource="{binding people}" valuememberbinding="{binding name}"  style="{staticresource autocompleteboxstyle1}">     <toolkit:autocompletebox.itemtemplate>         <datatemplate>             <stackpanel margin="10,10,10,20" height="66">                 <textblock text="{binding name}"/>                 <textblock text="{binding surname}"/>             </stackpanel>         </datatemplate>     </toolkit:autocompletebox.itemtemplate> </toolkit:autocompletebox> 

when type gives me suggestions, when click suggestion want navigate page details, how can make this? possible make invokecommandaction?


Comments

Popular posts from this blog

javascript - Jquery show_hide, what to add in order to make the page scroll to the bottom of the hidden field once button is clicked -

javascript - Highcharts multi-color line -

javascript - Enter key does not work in search box -