I wish to be able to drag uniformresourcelocators from a browser to a FlowDocument based Wiki. The Wiki is implemented in .Net 4.5.1 using WPF.
The DragEnter and DragOver events are firing but the Drop event is not. Instead, the uri is auto inserted into the document as text. I need the Drop event to fire so that I can insert a Hyperlink element into the document.
// My DragEnter and DragOver handlers return the following effects.
if (e.Data.GetDataPresent("UniformResourceLocatorW")) e.Effects = DragDropEffects.Link;
(I have also tried DragDropEffects.Copy and DragDropEffects.All).