Skip to content

Commit

Permalink
TODO: touch gesture zoom
Browse files Browse the repository at this point in the history
  • Loading branch information
xupefei committed May 6, 2017
1 parent aaa9a40 commit 073b1df
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,13 @@ public ImagePanel(string path)

viewPanel.PreviewMouseLeftButtonDown += ViewPanel_PreviewMouseLeftButtonDown;
viewPanel.PreviewMouseMove += ViewPanel_PreviewMouseMove;

viewPanel.TouchDown += ViewPanel_TouchDown;
}

private void ViewPanel_TouchDown(object sender, TouchEventArgs e)
{
// TODO: touch support
}

private void LoadImage(string path)
Expand Down

0 comments on commit 073b1df

Please sign in to comment.