Hi Folks,
I have a user control (WinForms) that has a radGridView placed on it.
I use it on my radForm as follows:
Declare the instance of the control as a member level variable
private UserctlItemMastGridView _gridview;Then in the constructor of the form I set it up and:
_gridview = new UserctlItemMastGridView();_gridview.Dock = DockStyle.Fill;pnlAll.Controls.Add(_gridview);_gridview.GridClicked += new EventHandler(this._gridview_GridClicked);Which is fine. I have an event handler which fires when the grid is clicked.
The issue I have is the mouse-wheel scroll is not being fired or captured. Is there a way to raise an event for mouse scroll on the user control and pass it back to the form?
Many thanks,
Martin.
