hello,
I have multiple calendars of type xamDayView and I wanted to know how I can change the mouse pointer icon while dragging one appointment from one calendar to another!
I am not certain which property should be editted since there's already a built-in handler for drag!
Regards,
Yourik
HI,
I am assuming you are speaking of the DragCursor.
You can change the cursor in the drag events.
Here is a code snippet:
private void DragSource_DragStart(object sender, Infragistics.DragDrop.DragDropStartEventArgs e) { e.DragTemplate = (DataTemplate) LayoutRoot.Resources["dtemp2"]; }
Sincerely, Matt DSE
Hello,
I'm trying to put the drag source events, but i'm having trouble with my references, Mainpage.xaml. It also doesn't recognize some of the controls such as DragDropManager in xaml. Would you please provide a sample project.
Thank you
HI Yourik,
I am attaching a sample project.
it worked.
thank you
I am following up on this thread.
Do you need further assistance?