예제 #1
0
        public static void TouchscreenAlphanumericDialogTest(
            NwazetGoImaging.VirtualCanvas canvas)
        {
            canvas.SetOrientation(NwazetGoImaging.Orientation.Landscape);
            var response = canvas.TouchscreenShowDialog(NwazetGoImaging.DialogType.Alphanumeric);

            Debug.Print("User Input: " + response);
            canvas.SetOrientation(NwazetGoImaging.Orientation.Portrait);
            response = canvas.TouchscreenShowDialog(NwazetGoImaging.DialogType.Alphanumeric);
            Debug.Print("User Input: " + response);
        }
예제 #2
0
 public static void TouchscreenAlphanumericDialogTest(VirtualCanvas canvas) {
     canvas.SetOrientation(Orientation.Landscape);
     var response = canvas.TouchscreenShowDialog(DialogType.Alphanumeric);
     Debug.Print("User Input: " + response);
     canvas.SetOrientation(Orientation.Portrait);
     response = canvas.TouchscreenShowDialog(DialogType.Alphanumeric);
     Debug.Print("User Input: " + response);
 }