Skip to main content
Version: 3.5

ComboBox

Namespace: Wisej.Web

Assembly: Wisej.Framework (3.5.0.0)

Represents a combo box control.

public class ComboBox : ListControl, IModified, ILabel, IReadOnly

Constructors

Instance memberComboBox()

Initializes an instance of ComboBox.

Instance memberComboBox(onSelectedIndexChanged)

Initializes a new instance of ComboBox class with specific initial settings.

NameTypeDescription
onSelectedIndexChangedAction<Object, EventArgs>SelectedIndexChanged handler.

Instance memberComboBox(label, onSelectedIndexChanged)

Initializes a new instance of ComboBox class with specific initial settings.

NameTypeDescription
labelStringThe initial text to display in the TextBox label.
onSelectedIndexChangedAction<Object, EventArgs>SelectedIndexChanged handler.

Instance memberComboBox(dataSource, displayMember, valueMember, iconMember, onSelectedIndexChanged)

Initializes a new instance of ComboBox class with specific initial settings.

NameTypeDescription
dataSourceObjectInitial DataSource.
displayMemberStringInitial DisplayMember.
valueMemberStringInitial ValueMember.
iconMemberStringInitial IconMember.
onSelectedIndexChangedAction<Object, EventArgs>Optional SelectedIndexChanged handler.

Instance memberComboBox(location, size, onSelectedIndexChanged)

Initializes an instance of ComboBox with the given datasource, size, location, and action.

NameTypeDescription
locationPointInitial location.
sizeSizeInitial size.
onSelectedIndexChangedAction<Object, EventArgs>Optional SelectedIndexChanged handler.

Instance memberComboBox(location, size, dataSource, displayMember, valueMember, iconMember, onSelectedIndexChanged)

Initializes an instance of ComboBox with the given datasource, size, location, and action.

NameTypeDescription
locationPointInitial location.
sizeSizeInitial size.
dataSourceObjectInitial DataSource.
displayMemberStringInitial DisplayMember.
valueMemberStringInitial ValueMember.
iconMemberStringInitial IconMember.
onSelectedIndexChangedAction<Object, EventArgs>Optional SelectedIndexChanged handler.

Instance memberComboBox(label, location, size, onSelectedIndexChanged)

Initializes an instance of ComboBox with the given datasource, size, location, and action.

NameTypeDescription
labelStringThe initial text to display in the TextBox label.
locationPointInitial location.
sizeSizeInitial size.
onSelectedIndexChangedAction<Object, EventArgs>Optional SelectedIndexChanged handler.

Instance memberComboBox(label, location, size, dataSource, displayMember, valueMember, iconMember, onSelectedIndexChanged)

Initializes an instance of ComboBox with the given datasource, size, location, and action.

NameTypeDescription
labelStringThe initial text to display in the TextBox label.
locationPointInitial location.
sizeSizeInitial size.
dataSourceObjectInitial DataSource.
displayMemberStringInitial DisplayMember.
valueMemberStringInitial ValueMember.
iconMemberStringInitial IconMember.
onSelectedIndexChangedAction<Object, EventArgs>Optional SelectedIndexChanged handler.

Properties

Instance memberAllowHtml

Boolean: Returns or sets a value indicating that the control can display html in the Text property. (Default: False)

Instance memberAutoCompleteMode

AutoCompleteMode: Returns or sets how automatic completion works for the ComboBox. (Default: None)

Instance memberAutoSize

Boolean: Returns or sets whether the height of the control is set automatically. (Default: True)

Instance memberCharacterCasing

CharacterCasing: Returns or sets whether the ComboBox control modifies the case of characters as they are typed. (Default: Normal)

Int32: Returns or sets the maximum height in pixels of the drop-down portion of the ComboBox. (Default: 400)

Throws:

ComboBoxStyle: Returns or sets the drop down style of the combo box. (Default: DropDown)

Int32: Returns or sets the maximum width in pixels of the drop-down list of the ComboBox. When the value is 0, the drop-down list will grow to fit the largest item. (Default: 0)

Throws:

Instance memberDroppedDown

Boolean: Returns or sets whether the combo box is displaying its drop-down portion.

Instance memberEnableNativeContextMenu

Boolean: Enables or disables the browser's context menu. (Default: True)

Instance memberIncrementalSelection

Boolean: Returns or sets whether items are selected incrementally as the user types within a timeout of 1 second. (Default: True)

Instance memberItemHeight

Int32: Gets or sets the height of the list items in the drop-down list. When the value is -1, uses the value set in the theme. (Default: -1)

Throws:

Instance memberItems

ObjectCollection: Returns the collection of the items contained in this ComboBox.

Instance memberLabel

LabelWrapper: Provides a label related to the control.

Instance memberLabelText

String: Returns or sets the localizable label associated with this control. (Default: "")

Instance memberLazyLoading

Boolean: Returns or sets whether the items are sent to the client the first time the list is opened and enables the Load event. (Default: False)

Instance memberMaxLength

Int32: Returns or sets the number of characters a user can type into the ComboBox. (Default: 0)

Throws:

Instance memberReadOnly

Boolean: Returns or sets whether the control is read-only. (Default: False)

Instance memberSelectedIndex

Int32: Returns or sets the index of the currently selected item.

Throws:

  • ArgumentOutOfRangeException The specified index is less than -1; o the specified index is greater than the number of items in the combo box.

Instance memberSelectedItem

Object: Returns or sets currently selected item in the ComboBox.

Instance memberSelectedText

String: Returns or sets the text that is selected in the editable portion of a ComboBox.

Instance memberSelectionLength

Int32: Returns or sets the number of characters selected in the editable portion of the combo box.

Throws:

Instance memberSelectionStart

Int32: Returns or sets the starting index of text selected in the combo box.

Throws:

Instance memberSorted

Boolean: Returns or sets whether the items in the combo box are sorted. (Default: False)

Throws:

Instance memberSpellCheck

Boolean: Returns or sets whether the text in the ComboBox is spell checked by the browser. (Default: False)

Instance memberText

String: Returns or sets the text associated with this control. (Default: "")

Instance memberTools

ComponentToolCollection: Returns the instance of ComponentToolCollection associated with this control.

Instance memberWatermark

String: Returns or sets the text to show when the control is empty. (Default: null)

Methods

Instance memberBeginUpdate()

Not used. Kept for compatibility.

Instance memberCopy()

Copies the current selection in the text box to the Clipboard.

Instance memberCut()

Moves the current selection in the text box to the Clipboard.

Instance memberEndUpdate()

Not used. Kept for compatibility.

Instance memberFindString(text)

Returns the index of the first item in the ComboBox that starts with the specified string.

ParameterTypeDescription
textStringThe String to search for.

Returns: Int32. The zero-based index of the first item found; returns -1 if no match is found.

Instance memberFindString(text, startIndex)

Returns the index of the first item in the ComboBox beyond the specified index that contains the specified string. The search is not case sensitive.

ParameterTypeDescription
textStringThe String to search for.
startIndexInt32The zero-based index of the item before the first item to be searched. Set to -1 to search from the beginning of the control.

Returns: Int32. The zero-based index of the first item found; returns -1 if no match is found, or 0 if the text parameter specifies Empty.

Instance memberFindStringExact(text)

Finds the first item in the combo box that matches the specified string.

ParameterTypeDescription
textStringThe String to search for.

Returns: Int32. The zero-based index of the first item found; returns -1 if no match is found, or 0 if the text parameter specifies Empty.

Instance memberFindStringExact(text, startIndex)

Finds the first item after the specified index that matches the specified string.

ParameterTypeDescription
textStringThe String to search for.
startIndexInt32The zero-based index of the item before the first item to be searched. Set to -1 to search from the beginning of the control.

Returns: Int32. The zero-based index of the first item found; returns -1 if no match is found, or 0 if the text parameter specifies Empty.

Instance memberPaste()

Replaces the current selection in the text box with the contents of the Clipboard.

Instance memberSelect(start, length)

Selects a range of text in the editable portion of the ComboBox.

ParameterTypeDescription
startInt32The position of the first character in the current text selection within the text box.
lengthInt32The number of characters to select.

Instance memberSelectAll()

Selects all the text in the editable portion of the ComboBox.

Events

Instance memberAutoComplete

HandledEventHandler Fired before the Validating event when DropDownStyle is set to DropDown or Simple.

The application may implement a different way to select the item when the user types a text and the ComboBox is validated. Set e.Handled to true to override the standard behavior.



this.comboBox1.AutoComplete += (s, e) =>
{
if (this.comboBox1.Text == "T")
{
this.compoBox1.SelectedIndex = 1;
e.Handled = true;
}
}


EventHandler Fired when the drop-down portion of a ComboBox is shown.

EventHandler Fired when the drop-down portion of the ComboBox is no longer visible.

EventHandler Fired when the DropDownStyle property has changed.

Instance memberLoad

EventHandler Fired when the drop-down list is first opened and the LazyLoading property is true.

When LazyLoading is true An application may fill the items at any time prior to the drop-down list being opened, or while processing the DropDown or Load event.

Instance memberReadOnlyChanged

EventHandler Fired when the value of the ReadOnly property has changed.

Instance memberSelectedIndexChanged

EventHandler Fired when the SelectedIndex property has changed.

Instance memberSelectedItemChanged

EventHandler Fired when the SelectedItem property has changed.

Instance memberSelectionChangeCommitted

EventHandler Fired when the selected item has changed and that change is displayed in the ComboBox.

Instance memberSortedChanged

EventHandler Fired when the Sorted property has changed.

Instance memberToolClick

ToolClickEventHandler Fired when a ComponentTool is clicked.

Inherited By

NameDescription
DataGridViewComboBoxEditingControlRepresents a ComboBox control that can be hosted in a DataGridViewComboBoxCell.
ListViewComboBoxThe TreeViewComboBox control represents a UserComboBox control with a ListView as the drop down panel.
TreeViewComboBoxThe TreeViewComboBox control represents a UserComboBox control with a TreeView as the drop down panel.
UserComboBoxThe UserComboBox control represents a ComboBox control with a custom panel that drops down when the user clicks the down arrow.

Implements

NameDescription
IBindableComponentBindable components implement this interface.
IDropTargetControls that support drag & drop operations implement this interface.
ILabelProvides access to the LabelWrapper associated with the controls that implement this interface.
IReadOnlyProvides access to the ReadOnly property for coontrols that support the read-only mode.
IModifiedProvides access to the Modified property and ModifiedChanged event for controls that implement this interface.
IValidationProvides access to the validation events and properties property for controls that support validation.
IWisejComponentAll wisej components implement this interface.
IWisejControlAll wisej controls derived from the Control class must implement this interface.
IWisejSerializableAllows an object to serialize itself.