Hello,
i want to use two finger at same time over a panel with multitouch pad device. for example if i drag my both fingers to right, show text toRight, or if i drag my two fingers upside, another event. how can i recognize my fingers move which direction? i want to use panGesture, but it doesnt work:).
private void radPanel1_PanGesture(object sender, PanGestureEventArgs e)
{
if (e.IsEnd)
if (mouseUP.X > mouseDown.X)
MessageBox.Show("toright");
else if (mouseUp.X < mouseDown.X)
MessageBox.Show("toleft");
}
I'm appreciate if you help me
Gary
i want to use two finger at same time over a panel with multitouch pad device. for example if i drag my both fingers to right, show text toRight, or if i drag my two fingers upside, another event. how can i recognize my fingers move which direction? i want to use panGesture, but it doesnt work:).
private void radPanel1_PanGesture(object sender, PanGestureEventArgs e)
{
if (e.IsEnd)
if (mouseUP.X > mouseDown.X)
MessageBox.Show("toright");
else if (mouseUp.X < mouseDown.X)
MessageBox.Show("toleft");
}
I'm appreciate if you help me
Gary