バージョン

AllowDropDown プロパティ

日付を選択するドロップ ダウンを使用するかどうかを示す値を取得または設定します。
シンタックス
'宣言
 
Public Property AllowDropDown As Boolean
public bool AllowDropDown {get; set;}
解説

デフォルトで、XamDateTimeEditor は日付マスクを持ち編集モードに入れる限り、ドロップダウンを表示します。つまり、Mask が時間のみの入力マスクに設定された場合は表示されません。AllowDropDown プロパティは、エディターが日付を編集するために使用されるときにドロップダウンを提供しないために使用されます。False に設定するときに、エディターはマウスまたはキーボードを使用するときにドロップダウン カレンダーを表示しません。

使用例
<!-- 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:XamDateTimeEditor AllowDropDown="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;
参照