For i = 0 To 100
Dim PanelComanda As Panel
PanelComanda.Initialize("PanelComanda")
PanelComanda.Height = 80dip
PanelComanda.Color = Colors.ARGB(255, 30 ,100,100)
PanelComanda.Tag = Newuid
PanelComanda.Width = ScrollViewComanda.Panel.Width
GD.SetOnGestureListener(PanelComanda, "Gesture")
ScrollViewComanda.Panel.AddView(PanelComanda,0dip, i * 90dip, ScrollViewComanda.Panel.Width, 80dip)
Next
......
Sub Gesture_onDrag(deltaX As Float, deltaY As Float, MotionEvent As Object)
'here I get information about the swipe, but not about the Swiped panel
End Sub