예제 #1
0
 private void ZoomOut()
 {
     PDFViewer.Zoom -= PDFViewer.GetZoom() * 0.1;
 }
예제 #2
0
 // NOTE: Zoom will perform increments of 10%
 private void ZoomIn()
 {
     PDFViewer.Zoom += PDFViewer.GetZoom() * 0.1;
 }