Exemple #1
0
 private bool OnCheckDragDropTarget(OrganizeBannerManager target)
 {
     if (_isDragDrop)
     {
         return(false);
     }
     return(_uiDragDropItem == null || (target.Equals(_uiDragDropItem) ? true : false));
 }
 private bool OnCheckDragDropTarget(OrganizeBannerManager target)
 {
     return(!this._isDragDrop && (this._uiDragDropItem == null || target.Equals(this._uiDragDropItem)));
 }