Hi,
I am using RadPageView control configured like in pageview.png.
I would like to add some functionality to Header element like:
1. On mouse over cursor should change to hand.
2. You should be able to click and do some action.
3. When moving between pages text should not be changed.
In summary, the header would turn into a button.
I was able only to change the text by:
But events such as MouseOver, MouseLeave, etc. do not work.
I am using RadPageView control configured like in pageview.png.
I would like to add some functionality to Header element like:
1. On mouse over cursor should change to hand.
2. You should be able to click and do some action.
3. When moving between pages text should not be changed.
In summary, the header would turn into a button.
I was able only to change the text by:
((Telerik.WinControls.UI.RadPageViewLabelElement)(
this
.radPageView1.GetChildAt(0).GetChildAt(1))).Text =
"Test"
;
But events such as MouseOver, MouseLeave, etc. do not work.