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
this.ultraDateTimeEditor1.DropDownButtonDisplayStyle = Infragistics.Win.ButtonDisplayStyle.Never;
private void ultraDateTimeEditor1_MouseDoubleClick(object sender, MouseEventArgs e) { (sender as UltraDateTimeEditor).DropDown(); }
Perfect. Thanks.