We have a date column that shows a date picker control. How can we change the style of the date picker? We don't want to show a red circle for the selected date..
Ah, okay, that switches it to the new-style themed MonthCalendar. I am pretty sure that this will only work on some operating systems, though. It will work on Windows Vista and Windows 7, but I am not sure about older OS's like Windows XP. That may not matter to you, of course. :)
Actually, all I had to do was call Application.EnableVisualStyles() on the winform control, and it looks quite nice.
Thanks Mike,
-greg
By default, the grid cell use a DateTimeEditor, which uses a Microsoft MonthCalendar Control. That control doesn't have much in the way of styling and you can't change the red circle as far as I know.
What you could do is set the EditorControl property of the column to an UltraCalendarCombo control. The CalendarCombo is a pure Infragitsics control with all of the usual appearance and styling options.