I've been working with the Telerik WPF controls for the last couple of months and appreciating them.
<rant>
However, I have a major gripe as well: most of the examples are FAR too complex. Here's a perfect example. I'm trying to get a ComboBox to work with a GridView. There is an example that does pretty much exactly what I want at https://github.com/telerik/xaml-sdk/tree/master/ComboBox/DropDownWithHeaders. However,
- A simple clone from the repository won't run. That seems fundamental to me. When I look into it, the problem is themes. A simple example should not even include themes! I would suggest a proper example would allow me to clone and run, with nothing else on my machine but Visual Studio.
- When I look into the actual example, it is anything but simple! The control template is 155 lines of code!?!?! How do I sort through that quickly and figure out what I need and don't need? I don't need all kinds of animation or fancy styles. For the purposes of learning the controls, I need the absolute minimum to make it work!
There is also an example of this at https://www.telerik.com/forums/radcombobox-with-radgridview, but it suffers from the same problems.
This kind of thing seriously makes me ponder going back to our old controls provider.
</rant>
Now, can someone please provide me with a simple example of a ComboBox that uses a GridView for the drop-down?
Of course perhaps I'm using the wrong control. Maybe I should be using the MultiColumnComboBox, but the end results shown in the examples make it look nothing like a traditional ComboBox. (Again, that may be owing to a lack of a good, simple example.)
Help?