Hi
I would like to remove the dropdown button on the DateTimeEditor and instead when the user double clicks then the dates will be shown instead of when clicking the drop down.
The reason for this is I am restricted for space on my forms and the drop down button part of the editor is covering over part of the date as per below.
Thanks
Paul
Hello,
I am glad that you find my suggestion helpful.Thank you for using Infragistics components.
Regards,Teodosia HristodorovaAssociate Software Developer
Perfect. Thanks.
this.ultraDateTimeEditor1.DropDownButtonDisplayStyle = Infragistics.Win.ButtonDisplayStyle.Never;
private void ultraDateTimeEditor1_MouseDoubleClick(object sender, MouseEventArgs e) { (sender as UltraDateTimeEditor).DropDown(); }