HI,
I have a requirement to prevent drag and drop for items inside placed inside DiagramToolboxCategory. Can you please guide me the approach to implement this. I have been trying with previewmousedown events but looks like it is internal behaviour of the control.
At high level, user should be able to view the items inside DiagramToolboxCategory.
Thanks and Regards,
Shashikanth N.
Hello Shashikanth,
Thank you for contacting Infragistics!
You can mark the XamDiagramToolbox PreviewMouseDown as handled to prevent dragging.
private void XamDiagramToolbox_PreviewMouseDown(object sender, MouseButtonEventArgs e) { e.Handled = true; }