This question is locked. New answers and comments are not allowed.
I am trying to populate the current date in a RadDateTimePicker when I double click on the control, but while trying to override the OnMouseLeftButtonUp(Or down) the overriden event doesn't seem to be fired.
Is there a way to accomplish loading the current date on a double click in the control?
protected
override
void
OnMouseLeftButtonUp(System.Windows.Input.MouseButtonEventArgs e)
{
//Code to handle the double click here
}
Is there a way to accomplish loading the current date on a double click in the control?