我有一个绑定到列表框数据模板的示例数据,每个项目都有一个 MouseDragElementBehavior,ConstrainToParentBounds 为 false。我想将列表框中的任何项目拖到页面中的任何空间。但是,项目仍然绑定到列表框。有什么建议么?AllowDrop 属性在 Windows Phone 上不起作用。
<ListBox x:Name="countryName" HorizontalAlignment="Left" Height="361" Margin="10,10,0,0" VerticalAlignment="Top" Width="436">
<i:Interaction.Behaviors>
<el:MouseDragElementBehavior ConstrainToParentBounds="False"/>
</i:Interaction.Behaviors>
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel>
<TextBlock Text="{Binding Name}">
</TextBlock>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>