有没有办法在 Windows Phone 中同时移动多个对象?(如果我移动左右索引,我想移动这两个项目)
我找到了两种在 Windows Phone 上实现拖放的解决方案。但是,我只能同时移动一项。
使用表情混合
<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
<Image Margin="129,112,167,122" Source="mypicture.png" Stretch="Fill">
<Custom:Interaction.Behaviors>
<il:MouseDragElementBehavior/>
</Custom:Interaction.Behaviors>
</Image>
</Grid>
使用 Windows Phone 工具包
<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
<Rectangle x:Name="myRectangle" Width="200" Height="200" Fill="Blue">
<toolkit:GestureService.GestureListener>
<toolkit:GestureListener DragDelta="GestureListener_DragDelta"/>
</toolkit:GestureService.GestureListener>
</Rectangle>
</Grid>