Is there a Desktop equivalent example of this example?
https://demos.telerik.com/aspnet-ajax/listbox/examples/applicationscenarios/treeviewdraganddrop/defaultcs.aspx
I'm struggling to figure out the way to handle this. I have a treeview showing a list of accounts, and a treeview that allows for grouping these accounts in a hierarchy. Both have underlying classes that are populated from a database.
I'd like to allow my front-end users to drag and drop accounts from the listView to the treeView. The one attribute they have in common is an AccountNumber. All other attributes in the Hierarchy can be derived from other controls on the form.
I read about adding a DataConverter, but cannot figure out how to implement this. For example, on this page: https://docs.telerik.com/devtools/wpf/controls/dragdropmanager/behaviors/listboxdragdropbehavior
it has a reference to DataConverter (but the definition for that seems to lack).
The other references I've seen is to a DragDropManager, but I don't seem to be able to find concrete examples for Desktop for that, either.
Googling so far hasn't really helped.
Any assistance would be greatly appreciated!