2

I have implemented drag drop functionality to a surfacelistbox as explained here (http://msdn.microsoft.com/en-us/library/ff727837.aspx). It's the exact same code I have.

I was wondering if it's possible to access a CanRotate property somewhere to stop the visual a user has when dragging rotating.

1 Answers1

1

BeginDragDrop returns a SurfaceDragCursor which has a CanRotate property you can set to false

Robert Levy
  • 28,747
  • 6
  • 62
  • 94
  • Robert you've been extremely helpful today. I've been pulling my hair out with some of these problems and I seriously appreciate your feedback mate. Thanks a lot!! –  Dec 15 '11 at 15:29
  • @DanielMcNulty - you're welcome :) I designed the SurfaceDragDrop APIs during my time at Microsoft and know they can be a bit confusing to get started with – Robert Levy Dec 15 '11 at 16:09