Beispiel #1
0
 public static NSDragOperation ValidateDrop(this INSCollectionViewDelegate This, NSCollectionView collectionView, NSDraggingInfo draggingInfo, out NSIndexPath proposedDropIndexPath, out NSCollectionViewDropOperation proposedDropOperation)
 {
     proposedDropIndexPath = null;
     proposedDropOperation = NSCollectionViewDropOperation.On;
     return(This.ValidateDropOperation(collectionView, draggingInfo, ref proposedDropIndexPath, ref proposedDropOperation));
 }
Beispiel #2
0
 public NSDragOperation DragOperationForDraggingInfotype(NSDraggingInfo dragInfo, string type)
 {
     return(DragOperationForDraggingInfo(dragInfo, type));
 }
Beispiel #3
0
 public virtual NSDragOperation ValidateDrop(NSCollectionView collectionView, NSDraggingInfo draggingInfo, out NSIndexPath proposedDropIndexPath, out NSCollectionViewDropOperation proposedDropOperation)
 {
     proposedDropIndexPath = null;
     proposedDropOperation = NSCollectionViewDropOperation.On;
     return(ValidateDropOperation(collectionView, draggingInfo, ref proposedDropIndexPath, ref proposedDropOperation));
 }
Beispiel #4
0
 public NSDragOperation DragOperationForDraggingInfotype(NSDraggingInfo dragInfo, string type)
 {
     return DragOperationForDraggingInfo (dragInfo, type);
 }