The Click event handles the MouseLeftButtonUp and MouseLeftButtonDownEvent so that is why the events would not work. You can use the UIElement.AddHandler method to subscribe for the desired events.
button.AddHandler(Button.MouseLeftButtonDownEvent, new MouseButtonEventHandler(YourEventHandler), true);
Regards,
Martin
Telerik
Do you need help with upgrading your AJAX, WPF or WinForms project? Check the Telerik API Analyzer and share your thoughts.