I am working with WPF and C#. I want to fire an event when the user modifies or selects a date on my raddatepicker control. What event handler should I be using for this? I want to be able to convert this captured date to a SQL server 'datetime' variable for use in the backend.
A:
SelectionChanged
is fired when a date is selected or typed + validated.
Will A
2010-09-23 20:22:07
What is DisplayDateChanged in that case?
VP
2010-09-23 20:26:22
That's an event on the RadCalendar control (and System.Windows.Controls.Calendar). SelectionChanged would seem to be the right event for the RDTP.
Will A
2010-09-23 20:29:57