Is it possible to show the week numbers there in the UltraDateTimeEditor?
Handle the AfterDropDown event like so:
void ultraDateTimeEditor_AfterDropDown(object sender, EventArgs e){ UltraDateTimeEditor control = sender as UltraDateTimeEditor; MonthCalendar cal = DropDownManager.GetCurrentDropDownControl( control ) as MonthCalendar; cal.ShowWeekNumbers = true;}
I'm trying this code but it seems that when displaying week numbers, the month calendar does not resize correctly, the last day column is missing. Bug?