I'm trying to intercept the Open and Save As Buttons for special handling
I have tried
AddHandler RadPdfViewerNavigator1.CommandBarElement.Rows(0).Strips(0).MouseDown, AddressOf OpenButton_MouseDown
But the addressof sub never gets hit.
Also, when I try to get to the Save As button with the following code; it throws an error. So, I'm approaching this the wrong way I guess.
AddHandler RadPdfViewerNavigator1.CommandBarElement.Rows(0).Strips(1).MouseDown, AddressOf SaveButton_MouseDown
After searching the forums, I'm not seeing any way to do this (so, I must be missing something).
Can you please tell me how to intercept these buttons?