Hi. I'm trying to get a sample application for pinch and zoom working. However, so far I have not had my handlers to be called even once.
Am I doing something wrong here?
Am I doing something wrong here?
public
Form1()
{
InitializeComponent();
radPanel1.EnableGesture(GestureType.Pan);
radPanel1.EnableGesture(GestureType.Zoom);
radPanel1.PanGesture +=
new
PanGestureEventHandler(ProcessPan);
radPanel1.ZoomGesture +=
new
ZoomGestureEventHandler(ProcessZoom);
}