Link to home
Start Free TrialLog in
Avatar of dastaub
dastaubFlag for United States of America

asked on

DateTimePicker

Is there a  property of the DateTimePicker for when the drop-down calendar disappears and the updated date is displayed on the DateTimePicker?  
The change property for the DateTimePicker fires off each time the user navigates through the drop down calendar of the dateTimePicker?
I need an event for when the drop-down calendar of the DateTimePicker disappears not each time it is clicked.
ASKER CERTIFIED SOLUTION
Avatar of kris_per
kris_per

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of kris_per
kris_per


public Form7()
{
            InitializeComponent();

            this.dateTimePicker1.CloseUp += new System.EventHandler(this.dateTimePicker1_CloseUp);
}

private void dateTimePicker1_CloseUp(object sender, EventArgs e)
{
}
Avatar of dastaub

ASKER

that was it, thank you