Reputation: 2237
I have to add a "Search Box" with a DropDown Button for searching the books.
This dropdown button should have an arrow pointing downwards and the search textbox next to it. so, wen i click on dropdown button, i should get few options (like team, personal, e........) If i select Team then the text "Search in Team" should be displayed in the textbox. A small magnifier for the searchbox will be available too.
I am using C#, XAML..its WPF app
Please help me.
Thanks
Ramm
Upvotes: 1
Views: 4627
Reputation: 10376
In WPF every control has templates and styles. You can look at the template for the standard WPF Dropdown and create your own template and style that will satisfy your requirements.
Upvotes: 0
Reputation: 1732
Infragistics and DevExpress have a DropDownButton control but you will have to purchase it.
I also found this How to make a Drop Down Button in WPF
Upvotes: 1