デフォルトで、XamDateTimeEditor は日付マスクを持ち編集モードに入れる限り、ドロップダウンを表示します。つまり、Mask が時間のみの入力マスクに設定された場合は表示されません。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 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;