コード例 #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));
 }
コード例 #2
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));
 }