동일한 문제가있었습니다. 나는 this drag-drop tool을 사용하여 끝내었다. Silverlight 5의 소스를 다시 컴파일했습니다. 목표를 알 수 있습니다. 나는 또한 게으르다. 툴킷 DragDropTarget 컨트롤을 사용할 때 끌고있는 것의 유령 드래그 그림을 원했기 때문에 소스 코드를 래핑하고 새로운 드래그 드롭 도구로 래핑했다.
나는 드래그 정의 방법 : DragSource에 및 DD : 나를 DD를 사용할 수 있도록하면서,
<toolkit:ListBoxDragDropTarget AllowedSourceEffects="Copy">
<ListBox ItemsSource="{Binding Path=UnitOfWork.Templates}" Width="130" Height="360" BorderThickness="0">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel>
<dd:DragSource>
<TextBlock Text="{Binding Path=Name}" Width="120"/>
</dd:DragSource>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</toolkit:ListBoxDragDropTarget>
<dd:DropTarget Grid.Row="2" AllowDrop="True" OnDropped="Target_OnDropped">
<Border BorderBrush="Black" BorderThickness="1" Width="98" Height="30">
<TextBlock Text="Drop Here" HorizontalAlignment="Center" VerticalAlignment="Center"/>
</Border>
</dd:DropTarget>
이 방법은 ListBoxDragDropTarget가 생성 드래그 유령을 유지는에 컨트롤을 DropTarget에 더 세밀한 드래그 - 드롭을 허용합니다.