You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you want to have both drag and drop enabled and still be able to tap the item, you need to use the ```TapCommand``` on the `HorizontalListView` instead of the ```xamEffects:Commands.Tap``` on the `DataTemplate` content.
390
390
It's less nice since you won't have the nice color ripple, but it will work :)
391
391
392
-
The only thing you have to do to enable drag and drop is setting`EnableDragAndDrop` to `true`.
392
+
The only thing you have to do to enable drag and drop is set`EnableDragAndDrop` to `true`.
393
393
394
394
The `DragAndDropStartCommand` and `DragAndDropEndedCommand` commands will pass as argument a `DragAndDropInfo` object:
395
395
@@ -406,6 +406,40 @@ public class DragAndDropInfo
406
406
407
407
Contributor: Implemented by @jmmortega.
408
408
409
+
### Since 1.8.1
410
+
411
+
`EnableDragAndDrop` is now a bindable property, so you can enable it at runtime.
412
+
413
+
You can now also specify a custom animation when the `EnableDragAndDrop` is set to ture:
0 commit comments