Is it possible to mark bold some dates in DateTimeEditors's calendar? Like paint all Saturdays and Sundays with red or bold? Can you disable dates after today to pick up?
If you're using the AfterDropDown event handler, then I'm not sure why it's not working for you. You could try submitting an incident to Developer Support, but it's not always 100% that something like this would work due to the nature of reflection and the possibility of internal code to change, as this is not a supported feature.
-Matt
using Infragistics.Win;using Infragistics.Win.UltraWinEditors;using System.Reflection;
Now info is not null and dd is not null but still - no bolded dates. May be I should call some method to apply new settings? Or probably bolded dates list reinitialized by Windows and my settings not applyed :(
What namespaces are you using? May be it is wrong because I qualified names not correctly. I checked GetProperties and nothing seems like "Month..." there.
I tested this exact code in a sample project, so it at least exists in the version I tested (which was 8.2 I think). I'm fairly certain that internal property has been there for a while, though. You could call GetProperties() in the debugger just to see which properties are available to you. Just make sure that you using the BindingFlags that I specified in my code.
info always returns null. Are you sure DateTimeEditor has property MonthDropDown?