WPF Grid Mouse Events

1.8k views Asked by At

I was wondering, what is the best way to capture a mouse Event inside of a wpf Grid?

I wanted to Capture an event when the mouse wheel is either scrolled up or down in the Grid.

I tried to create a custom grid, but that kind of didn't work.

Any ideas?

2

There are 2 answers

0
Drew Marsh On

You can hook the MouseWheel event or, if you're inheriting, you can override the OnMouseWheel method.

0
viky On

I handled mouse event inside a grid by placing a blank Label inside so that it will expand through the Grid and then providing a handler to that.