Search Results for

    Show / Hide Table of Contents

    Class ComboBox

    Provides a drop-down list of items the user can select from.
    Inheritance
    object
    Responder
    View
    ComboBox
    Implements
    IDisposable
    ISupportInitializeNotification
    ISupportInitialize
    Inherited Members
    View.Added
    View.Removed
    View.Enter
    View.Leave
    View.MouseEnter
    View.MouseLeave
    View.MouseClick
    View.CanFocusChanged
    View.EnabledChanged
    View.VisibleChanged
    View.HotKeyChanged
    View.HotKey
    View.HotKeySpecifier
    View.Shortcut
    View.ShortcutTag
    View.ShortcutAction
    View.Data
    View.Driver
    View.Subviews
    View.TabIndexes
    View.TabIndex
    View.TabStop
    View.CanFocus
    View.Id
    View.IsCurrentTop
    View.WantMousePositionReports
    View.WantContinuousButtonPressed
    View.Frame
    View.LayoutStyle
    View.Bounds
    View.X
    View.Y
    View.Width
    View.Height
    View.ForceValidatePosDim
    View.GetMinWidthHeight(out Size)
    View.SetMinWidthHeight()
    View.TextFormatter
    View.SuperView
    View.UpdateTextFormatterText()
    View.ProcessResizeView()
    View.SetNeedsDisplay()
    View.ClearLayoutNeeded()
    View.SetNeedsDisplay(Rect)
    View.SetChildNeedsDisplay()
    View.Add(View)
    View.Add(params View[])
    View.RemoveAll()
    View.Remove(View)
    View.BringSubviewToFront(View)
    View.SendSubviewToBack(View)
    View.SendSubviewBackwards(View)
    View.BringSubviewForward(View)
    View.Clear()
    View.Clear(Rect)
    View.ScreenToView(int, int)
    View.ClipToBounds()
    View.SetClip(Rect)
    View.DrawFrame(Rect, int, bool)
    View.DrawHotString(ustring, Attribute, Attribute)
    View.DrawHotString(ustring, bool, ColorScheme)
    View.Move(int, int, bool)
    View.PositionCursor()
    View.HasFocus
    View.OnAdded(View)
    View.OnRemoved(View)
    View.Focused
    View.MostFocused
    View.AddRune(int, int, Rune)
    View.ClearNeedsDisplay()
    View.DrawContent
    View.OnDrawContent(Rect)
    View.DrawContentComplete
    View.OnDrawContentComplete(Rect)
    View.SetFocus()
    View.KeyPress
    View.InvokeKeybindings(KeyEvent)
    View.AddKeyBinding(Key, params Command[])
    View.ReplaceKeyBinding(Key, Key)
    View.ContainsKeyBinding(Key)
    View.ClearKeybindings()
    View.ClearKeybinding(Key)
    View.ClearKeybinding(params Command[])
    View.AddCommand(Command, Func<bool?>)
    View.GetSupportedCommands()
    View.GetKeyFromCommand(params Command[])
    View.ProcessHotKey(KeyEvent)
    View.ProcessColdKey(KeyEvent)
    View.KeyDown
    View.OnKeyDown(KeyEvent)
    View.KeyUp
    View.OnKeyUp(KeyEvent)
    View.EnsureFocus()
    View.FocusFirst()
    View.FocusLast()
    View.FocusPrev()
    View.FocusNext()
    View.LayoutStarted
    View.LayoutComplete
    View.Initialized
    View.LayoutSubviews()
    View.AutoSize
    View.PreserveTrailingSpaces
    View.TextAlignment
    View.VerticalTextAlignment
    View.TextDirection
    View.IsInitialized
    View.IsAdded
    View.Enabled
    View.ClearOnVisibleFalse
    View.Visible
    View.Border
    View.IgnoreBorderPropertyOnRedraw
    View.ToString()
    View.GetAutoSize()
    View.GetHotKeySpecifierLength(bool)
    View.GetTextFormatterBoundsSize()
    View.GetBoundsTextFormatterSize()
    View.OnMouseEnter(MouseEvent)
    View.OnMouseLeave(MouseEvent)
    View.OnMouseEvent(MouseEvent)
    View.OnMouseClick(View.MouseEventArgs)
    View.OnCanFocusChanged()
    View.OnEnabledChanged()
    View.OnVisibleChanged()
    View.Dispose(bool)
    View.BeginInit()
    View.EndInit()
    View.SetWidth(int, out int)
    View.SetHeight(int, out int)
    View.GetCurrentWidth(out int)
    View.GetCurrentHeight(out int)
    View.GetNormalColor()
    View.GetFocusColor()
    View.GetHotNormalColor()
    View.GetTopSuperView()
    Responder.Dispose()
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    Namespace: Terminal.Gui
    Assembly: Terminal.Gui.dll
    Syntax
    public class ComboBox : View, IDisposable, ISupportInitializeNotification, ISupportInitialize

    Constructors

    | Edit this page View Source

    ComboBox()

    Public constructor
    Declaration
    public ComboBox()
    | Edit this page View Source

    ComboBox(ustring)

    Public constructor
    Declaration
    public ComboBox(ustring text)
    Parameters
    Type Name Description
    ustring text
    | Edit this page View Source

    ComboBox(IList)

    Initialize with the source.
    Declaration
    public ComboBox(IList source)
    Parameters
    Type Name Description
    IList source The source.
    | Edit this page View Source

    ComboBox(Rect, IList)

    Public constructor
    Declaration
    public ComboBox(Rect rect, IList source)
    Parameters
    Type Name Description
    Rect rect
    IList source

    Properties

    | Edit this page View Source

    ColorScheme

    Declaration
    public ColorScheme ColorScheme { get; set; }
    Property Value
    Type Description
    ColorScheme
    | Edit this page View Source

    HideDropdownListOnClick

    Gets or sets if the drop-down list can be hide with a button click event.
    Declaration
    public bool HideDropdownListOnClick { get; set; }
    Property Value
    Type Description
    bool
    | Edit this page View Source

    IsShow

    Gets the drop down list state, expanded or collapsed.
    Declaration
    public bool IsShow { get; }
    Property Value
    Type Description
    bool
    | Edit this page View Source

    ReadOnly

    If set to true its not allow any changes in the text.
    Declaration
    public bool ReadOnly { get; set; }
    Property Value
    Type Description
    bool
    | Edit this page View Source

    SearchText

    Current search text
    Declaration
    public ustring SearchText { get; set; }
    Property Value
    Type Description
    ustring
    | Edit this page View Source

    SelectedItem

    Gets the index of the currently selected item in the Source
    Declaration
    public int SelectedItem { get; set; }
    Property Value
    Type Description
    int The selected item or -1 none selected.
    | Edit this page View Source

    Source

    Gets or sets the IListDataSource backing this ComboBox, enabling custom rendering.
    Declaration
    public IListDataSource Source { get; set; }
    Property Value
    Type Description
    IListDataSource The source.
    Remarks
    Use SetSource(IList) to set a new IList source.
    | Edit this page View Source

    Text

    The currently selected list item
    Declaration
    public ustring Text { get; set; }
    Property Value
    Type Description
    ustring

    Methods

    | Edit this page View Source

    Collapse()

    Collapses the drop down list. Returns true if the state chagned or false if it was already collapsed and no action was taken
    Declaration
    public virtual bool Collapse()
    Returns
    Type Description
    bool
    | Edit this page View Source

    Expand()

    Expands the drop down list. Returns true if the state chagned or false if it was already expanded and no action was taken
    Declaration
    public virtual bool Expand()
    Returns
    Type Description
    bool
    | Edit this page View Source

    MouseEvent(MouseEvent)

    Method invoked when a mouse event is generated
    Declaration
    public override bool MouseEvent(MouseEvent me)
    Parameters
    Type Name Description
    MouseEvent me
    Returns
    Type Description
    bool true, if the event was handled, false otherwise.
    Overrides
    Responder.MouseEvent(MouseEvent)
    | Edit this page View Source

    OnCollapsed()

    Virtual method which invokes the Collapsed event.
    Declaration
    public virtual void OnCollapsed()
    | Edit this page View Source

    OnEnter(View)

    Method invoked when a view gets focus.
    Declaration
    public override bool OnEnter(View view)
    Parameters
    Type Name Description
    View view The view that is losing focus.
    Returns
    Type Description
    bool true, if the event was handled, false otherwise.
    Overrides
    View.OnEnter(View)
    | Edit this page View Source

    OnExpanded()

    Virtual method which invokes the Expanded event.
    Declaration
    public virtual void OnExpanded()
    | Edit this page View Source

    OnLeave(View)

    Method invoked when a view loses focus.
    Declaration
    public override bool OnLeave(View view)
    Parameters
    Type Name Description
    View view The view that is getting focus.
    Returns
    Type Description
    bool true, if the event was handled, false otherwise.
    Overrides
    View.OnLeave(View)
    | Edit this page View Source

    OnOpenSelectedItem()

    Invokes the OnOpenSelectedItem event if it is defined.
    Declaration
    public virtual bool OnOpenSelectedItem()
    Returns
    Type Description
    bool
    | Edit this page View Source

    OnSelectedChanged()

    Invokes the SelectedChanged event if it is defined.
    Declaration
    public virtual bool OnSelectedChanged()
    Returns
    Type Description
    bool
    | Edit this page View Source

    ProcessKey(KeyEvent)

    If the view is focused, gives the view a chance to process the keystroke.
    Declaration
    public override bool ProcessKey(KeyEvent e)
    Parameters
    Type Name Description
    KeyEvent e
    Returns
    Type Description
    bool
    Overrides
    View.ProcessKey(KeyEvent)
    Remarks

    Views can override this method if they are interested in processing the given keystroke. If they consume the keystroke, they must return true to stop the keystroke from being processed by other widgets or consumed by the widget engine. If they return false, the keystroke will be passed using the ProcessColdKey method to other views to process.

    The View implementation does nothing but return false, so it is not necessary to call base.ProcessKey if you derive directly from View, but you should if you derive other View subclasses.

    | Edit this page View Source

    Redraw(Rect)

    Redraws this view and its subviews; only redraws the views that have been flagged for a re-display.
    Declaration
    public override void Redraw(Rect bounds)
    Parameters
    Type Name Description
    Rect bounds The bounds (view-relative region) to redraw.
    Overrides
    View.Redraw(Rect)
    Remarks

    Always use Bounds (view-relative) when calling Redraw(Rect), NOT Frame (superview-relative).

    Views should set the color that they want to use on entry, as otherwise this will inherit the last color that was set globally on the driver.

    Overrides of Redraw(Rect) must ensure they do not set Driver.Clip to a clip region larger than the parameter, as this will cause the driver to clip the entire region.

    | Edit this page View Source

    SetSource(IList)

    Sets the source of the ComboBox to an IList.
    Declaration
    public void SetSource(IList source)
    Parameters
    Type Name Description
    IList source
    Remarks
    Use the Source property to set a new IListDataSource source and use custome rendering.

    Events

    | Edit this page View Source

    Collapsed

    This event is raised when the drop-down list is collapsed.
    Declaration
    public event Action Collapsed
    Event Type
    Type Description
    Action
    | Edit this page View Source

    Expanded

    This event is raised when the drop-down list is expanded.
    Declaration
    public event Action Expanded
    Event Type
    Type Description
    Action
    | Edit this page View Source

    OpenSelectedItem

    This event is raised when the user Double Clicks on an item or presses ENTER to open the selected item.
    Declaration
    public event Action<ListViewItemEventArgs> OpenSelectedItem
    Event Type
    Type Description
    Action<ListViewItemEventArgs>
    | Edit this page View Source

    SelectedItemChanged

    This event is raised when the selected item in the ComboBox has changed.
    Declaration
    public event Action<ListViewItemEventArgs> SelectedItemChanged
    Event Type
    Type Description
    Action<ListViewItemEventArgs>

    Implements

    IDisposable
    ISupportInitializeNotification
    ISupportInitialize
    • Edit this page
    • View Source
    In this article
    Back to top Generated by DocFX