阻止DataGrid拖放目标显示“拖动阴影”

时间:2010-06-03 14:09:27

标签: silverlight drag-and-drop silverlight-toolkit

是否可以阻止Silverlight Toolkit DataGridDragDropTarget开始拖动操作?

我想要的是将一个DataGrid仅用作DragSource而另一个仅用作DropTarget。当按下并将鼠标移到项目上时,DropTarget-only-DataGrid不应显示此“StartDragShadow”。

1 个答案:

答案 0 :(得分:0)

只需将AllowedSourceEffects控件的toolkit:DataGridDragDropTarget属性设置为"None"

<toolkit:DataGridDragDropTarget AllowDrop="true" AllowedSourceEffects="None">
   <sdk:DataGrid Name="DropTarget" />
</toolkit:DataGridDragDropTarget>