Guest User

Untitled

a guest
Jul 21st, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. private void Grid_PreviewMouseLeftButtonDown(object sender, MouseButtonEventArgs e)
  2. {
  3. Button button = e.Source as Button;
  4. if (button != null)
  5. {
  6. // button is being clicked, handle it
  7. }
  8. }
Add Comment
Please, Sign In to add comment