can't seem to find how to implement behavior that supports drag&dropping a control (with DragEnter, DragOver, DragLeave and DragDrop events being fired on controls that are listening) while being able to actually drag around the control, like with Thumb control and corresponding DragDelta event. Thumb control itself and DragDrop system are mutually exclusive, as each of them requires mouse capture. So, how can i implement control that i can drag around with my mouse while still being able to drop it on something with DragDrop system?
idk why i haven't found this in text format anywhere, but here it is: https://www.youtube.com/watch?v=THV5BW5WW_o&ab_channel=SingletonSean he used GiveFeedback event to implement visual control dragging while drag and drop is active, this solution fits me