<!-- By default a XamDateTimeEditor with a date mask will use a date dropdown but you can prevent this by setting the AllowDropDown to false --> <igEditors:XamDateTimeEditorAllowDropDown="False"Mask="{}{date}"/>
' by default the XamDateTimeEditor will use a XamMonthCalendar
' dropdown if the mask has date sections. this can be prevented
' by setting the AllowDropDown to false
Me.xamDateTimeEditor1.Mask = "{date}"Me.xamDateTimeEditor1.AllowDropDown = False
// by default the XamDateTimeEditor will use a XamMonthCalendar
// dropdown if the mask has date sections. this can be prevented
// by setting the AllowDropDown to false
this.xamDateTimeEditor1.Mask = "{date}";
this.xamDateTimeEditor1.AllowDropDown = false;