'宣言 Public Property DropDownButtonDisplayStyle As Infragistics.Win.ButtonDisplayStyle
public Infragistics.Win.ButtonDisplayStyle DropDownButtonDisplayStyle {get; set;}
UltraDateTimeEditorコントロールは、ドロップダウンボタンが表示されるかどうかを制御する機能を提供します。
Always (デフォルト) に設定されると、組み込み ComboBox コントロールの場合と同じように、ドロップダウン ボタンは常に表示されます。
Never に設定すると、ドロップダウン ボタンは決して表示されません。これはコントロールのリスト部分を表示できるかどうかに影響しないことに注意してください。
OnMouseEnter に設定した場合、カーソルがコントロールの境界に移動するとドロップダウンボタンが表示され、外に移動すると非表示になります。
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
using System.Diagnostics; using Infragistics.Win; using Infragistics.Win.UltraWinEditors; private void button1_Click(object sender, System.EventArgs e) { // Align the dropdown button with the right side of the control this.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. this.ultraDateTimeEditor1.DropDownButtonDisplayStyle = ButtonDisplayStyle.OnMouseEnter; // Center the dropdown calendar with respect to the edit portion of the control this.ultraDateTimeEditor1.DropDownCalendarAlignment = DropDownListAlignment.Center; }