Reputation: 39
Sorry but I am a newbie to WPF, I would really appreciate if you could help me-
Edit:
Looking for something simple like when using gridview with listview (as in pic below) there is automatically that standard window gradient & bevel effect etc. (As an idea, implementing it with buttons seems to cumbersome, first strip button border, then create all these effects.) So essentially anything already inbuilt in WPF.
Thanks for any help :-D !!!
Upvotes: 1
Views: 74
Reputation: 2785
ListBox
or ListView
are good controls to use. If it's just the 'pretty' factor you don't like, you can provide Template
s to change the appearance. But functionally, ListBox
and ListView
provide the function of that menu.
When working with WPF, that should be your primary motivation when choose controls. What FUNCTIONS the way you want. You can always make it LOOK different with Template
s, but getting the right FUNCTION is the primary goal for the control.
Upvotes: 2