Imports Infragistics.Win
Imports Infragistics.Win.UltraWinEditors
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
' Align the dropdown button with the right side of the control
Me.UltraDateTimeEditor1.DropDownButtonAlignment = ButtonAlignment.Right
' Make the dropdown button only appear when the cursor moves over the control
' Note that with this setting, the dropdown button is always visible when the control
' has the input focus.
Me.UltraDateTimeEditor1.DropDownButtonDisplayStyle = ButtonDisplayStyle.OnMouseEnter
' Center the dropdown calendar with respect to the edit portion of the control
Me.UltraDateTimeEditor1.DropDownCalendarAlignment = DropDownListAlignment.Center
End Sub