'宣言 Public Overridable Property DropDownStyle As Infragistics.Win.DropDownStyle
public virtual Infragistics.Win.DropDownStyle DropDownStyle {get; set;}
DropDownStyle プロパティはユーザーに示されるインターフェイスを制御します。DropDown に設定すると、テキスト部分は編集可能で、コントロールの値は任意の文字列値に設定できます。
DropDownList に設定すると、コントロールの値はドロップダウン リストの項目に対応する必要があります。
注: DropDownStyle プロパティの値は、キーボードの動作の特定の側面にも影響を及ぼします。たとえば、DropDownStyle プロパティが DropDownList に設定される場合、英数字キーを押すとテキストがその文字で始まる最初の項目が選択されます。
注: このコントロールは AutoComplete プロパティも公開します。これは DropDownStyle プロパティが DropDown に設定されている場合に限って適用可能です。
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; }