Gets/sets the display style for the control's dropdown button.
This example uses the control's DropDownStyle property to disallow typing values into the edit portion, and sets the DropDownButtonDisplayStyle so that the dropdown button does not appear.
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
'Declaration
Public Property DropDownButtonDisplayStyle As Infragistics.Win.ButtonDisplayStyle
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;
}
'Declaration
Public Property DropDownButtonDisplayStyle As Infragistics.Win.ButtonDisplayStyle
Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2