예제 #1
0
 public DragDropCommandIntern(IDragDropComponent owner, DragDropConfig config = null)
 {
     this.owner  = owner;
     this.config = config ?? new DragDropConfig();
 }
예제 #2
0
 public static void EnableDragDrop(IDragDropComponent owner, DragDropConfig config) => new DragDropCommandIntern(owner, config).Register();