我想使用拖放系统给用户一种他把物品放在一个盒子里的感觉。我的 xml 看起来像:
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<Grid Grid.Row="0"/>
<TextBlock CanDrag="True"/>
</Grid>
<Grid Grid.Row="1">
<Image Stource="box.png"/>
</Grid>
</Grid>
但是拖动的项目总是在顶部,尽管 TextBlock 已经在图像之前定义了。是否可以将其发送到后面,或者将我的图像带到前面?