Marlene,
You can get the GanttTaskItemBar if you can get hold of "OriginalSource" on drop handler like this,
GanttTaskItemBar taskBar = Extensions.FindAncestor<GanttTaskItemBar>(e.OriginalSource as FrameworkElement);
The "taskBar" will be null if there is no task on drop location.
Thanks,
- Raja.