I am using silverlight 5 and getting an error in designer saying Value does not fall within the expected range when I put a user control inside the DataGridDragDropTarget. And my user control is basicall a datagrid. Below is the code:
<StackPanel Orientation="Horizontal">
<toolkit:DataGridDragDropTarget AllowedSourceEffects="Copy"
VerticalAlignment="Top">
<views:CustomerGrid x:Name="customerGrid" d:LayoutOverrides="Width, Height" />
</toolkit:DataGridDragDropTarget>
</StackPanel>