'宣言 Public Property DropDownButtonDisplayStyle As Infragistics.Win.ButtonDisplayStyle
public Infragistics.Win.ButtonDisplayStyle DropDownButtonDisplayStyle {get; set;}
UltraComboEditor コントロールは、ドロップダウンボタンが表示されるかどうかを制御する機能を提供します。
Always (デフォルト) に設定されると、組み込み ComboBox コントロールの場合と同じように、ドロップダウン ボタンは常に表示されます。
Never に設定すると、ドロップダウン ボタンは決して表示されません。これはコントロールのリスト部分を表示できるかどうかに影響しないことに注意してください。
OnMouseEnter に設定した場合、カーソルがコントロールの境界に移動するとドロップダウンボタンが表示され、外に移動すると非表示になります。
Imports Infragistics.Win Imports Infragistics.Win.UltraWinEditors Private Sub SetupDropDownStyles() ' Set the DropDownStyle to DropDownList so the control's ' value is restricted to items that appear in the list portion Me.UltraComboEditor1.DropDownStyle = DropDownStyle.DropDownList ' Set the DropDownButtonDisplayStyle proeprty to Never, so the dropdown ' button does not appear. Note that the dropdown list can still be displayed ' by pressing the F4 key Me.UltraComboEditor1.DropDownButtonDisplayStyle = ButtonDisplayStyle.Never End Sub
using System.Diagnostics; using Infragistics.Win; using Infragistics.Win.UltraWinEditors; private void SetupDropDownStyles() { // Set the DropDownStyle to DropDownList so the control's // value is restricted to items that appear in the list portion this.ultraComboEditor1.DropDownStyle = DropDownStyle.DropDownList; // Set the DropDownButtonDisplayStyle proeprty to Never, so the dropdown // button does not appear. Note that the dropdown list can still be displayed // by pressing the F4 key this.ultraComboEditor1.DropDownButtonDisplayStyle = ButtonDisplayStyle.Never; }