0

I want to use the Drag & Drop system to give the user the feeling he puts the item in a box. My xaml looks like :

<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>

But the item dragged is always on the top, though the TextBlock has been defined before the image. Is it possible to send it to the back, or to bring my image to the front ?

Myosotis
  • 239
  • 3
  • 14

0 Answers0