Hi there,
I am making a simple layered image editor. Its major function is to add text layers on images. I am trying to use Label as text layers and use snapshot to export merged images.
I try to use the mouse to drag a control to a new place.
I use the mousedragged event, but the dragging process is shaky.
I am making a simple layered image editor. Its major function is to add text layers on images. I am trying to use Label as text layers and use snapshot to export merged images.
I try to use the mouse to drag a control to a new place.
I use the mousedragged event, but the dragging process is shaky.
B4X:
Sub ImageView1_MouseDragged (EventData As MouseEvent)
Dim node As Node
node=Sender
node.Left=EventData.X
node.Top=EventData.Y
node.MouseCursor=fx.Cursors.HAND
End Sub
Last edited: