GaneshGawali
GaneshGawali

Reputation: 41

Search Box Control in windows phone 8

Can anybody tell me how do i add search-box control in "XAML" windows phone 8? i have tried for search-box control but seems that there is no such control exist.No such Namespace exist error shown by compiler..please suggest any answer thank you in advance.

Upvotes: 0

Views: 1367

Answers (1)

Sajeetharan
Sajeetharan

Reputation: 222722

You could use AutoCompleteBox which is a control works like a searchBox

<toolkit:AutoCompleteBox  x:Name="txtSearch"  ItemsSource="{Binding}" Margin="0,22,3,10"  />

Upvotes: 2

Related Questions