I have a report that has a lot of data formatted to be printer friendly. On average there are 16 to 24 pages of data which my users can page through. I decided to make a windows forms ReportViewer
(imported into WPF) and it works very well except for one thing: I cannot find how to disable the automatic page advance on scrolling.
I have looked through my rdlc report properties and the ReportViewer
both and don't see any properties. I cannot find any information online either for it. is this not a feature that can be disabled or am I just not seeing it?
ReportViewer
performs page navigation on mouse wheel by overridingOnMouseWheel
method of an internal control namedReportPanel
, so we can not override it, because it's internal.ReportViewer
control has aPageNavigation
event which we can use it to cancel navigation. But we should distinguish if the event is raised by toolbar buttons or by mouse wheel. To do so, we handlesClick
event of toolbar buttons in code (and remove default event handler) and set a flag which will be used later to determine the navigation event is raised by toolbar.I wrote a method which encapsulates the logic and makes disabling wheel navigation easy. To do so, it's enough to call the method this way:
And here is the implementation of the method: