コード例 #1
0
 public void ManipulationStarted(double imgWidth, double imgHeight, ManipulationStartedEventArgs e)
 {
     if (SelectedTool != null && !IsWorking)
     {
         SelectedTool.ImageWidth  = imgWidth;
         SelectedTool.ImageHeight = imgHeight;
         SelectedTool.Started(e);
     }
 }