I am using RadPageView Backstage mode, As I have many buttons in my element bar, I am using StripButtons for scrolling among them. I want to use mouse Wheel for scrolling among the Items.
Is there anyway to do that?
Sincerely
Farshad Zamani
1 Answer, 1 is accepted
0
Peter
Telerik team
answered on 07 Jun 2013, 03:06 PM
Hi Farshad,
Thank you for writing.
You should handle the RadPageView's MouseWheel event and call ScrollButton's PerformClick in this event.
For example:
public Form1()
{
InitializeComponent();
this.radPageView1.MouseWheel += new MouseEventHandler(radPageView1_MouseWheel);