Hello @Shyam Butani ,
Welcome to Microsoft Q&A!
DragUI only works when dragging starts. It is not possible to preview before drag-and-drop with DragUI
.
Suppose we've one draggable TextBlock and when we drag it, we can see some preview moving with the mouse pointer moving.
Depending on your scenario, perhaps we can use other methods to achieve similar effects. It is recommended to use ToolTip to show the preview image. Tooltips display automatically when the user moves focus to, presses and holds, or hovers the pointer over the associated control.
<TextBlock Text="store logo">
<ToolTipService.ToolTip>
<Image Source="Assets/StoreLogo.png"/>
</ToolTipService.ToolTip>
</TextBlock>
Thank you.
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.