'宣言 Public Property DropDownButtonDisplayMode As DropDownButtonDisplayMode
public DropDownButtonDisplayMode DropDownButtonDisplayMode {get; set;}
DropDownButtonDisplayMode はドロップダウン ボタンが表示されるかどうかを決定します。
注: エディターが編集モードの時にドロップダウン ボタンは常に表示されます。IsAlwaysInEditMode が True の場合、このプロパティは無視されてボタンが常に表示されます。
プロパティのデフォルト値は、MouseOver であることに注意してください。ただし、さまざまなテーマのスタイルは、デフォルトのオペレーティング システムの動作との整合性を確認するために、このプロパティを他の値に明示的に設定する場合があることに注意してください。例えば、Windows Vista で使用される「Aero」テーマのデフォルト XamComboEditor スタイルは、このプロパティを Always に設定します。
Imports Infragistics.Windows.Editors Public Sub New() ' This call is required by the Windows Form Designer. InitializeComponent() ' Add any initialization after the InitializeComponent() call. Me.xamDateTimeEditor1.DropDownButtonDisplayMode = DropDownButtonDisplayMode.Always End Sub Private Sub xamDateTimeEditor1_DropDownOpened(ByVal sender As System.Object, ByVal e As System.Windows.RoutedEventArgs) Handles xamDateTimeEditor1.DropDownOpened End Sub Private Sub xamDateTimeEditor1_DropDownClosed(ByVal sender As System.Object, ByVal e As System.Windows.RoutedEventArgs) Handles xamDateTimeEditor1.DropDownClosed End Sub
using Infragistics.Windows.Editors; public Window1() { InitializeComponent(); this.xamDateTimeEditor1.DropDownButtonDisplayMode = DropDownButtonDisplayMode.Always; this.xamDateTimeEditor1.DropDownOpened += new EventHandler<RoutedEventArgs>(this.xamDateTimeEditor1_DropDownOpened); this.xamDateTimeEditor1.DropDownClosed += new EventHandler<RoutedEventArgs>(this.xamDateTimeEditor1_DropDownClosed); } private void xamDateTimeEditor1_DropDownOpened(object sender, RoutedEventArgs e) { } private void xamDateTimeEditor1_DropDownClosed(object sender, RoutedEventArgs e) { }