Search Results for

    Show / Hide Table of Contents

    Class RadioGroup

    Displays a group of labels each with a selected indicator. Only one of those can be selected at a given time.
    Inheritance
    System.Object
    Responder
    View
    RadioGroup
    Implements
    System.IDisposable
    System.ComponentModel.ISupportInitializeNotification
    System.ComponentModel.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(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(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(Int32, Int32)
    View.ClipToBounds()
    View.SetClip(Rect)
    View.DrawFrame(Rect, Int32, Boolean)
    View.DrawHotString(ustring, Attribute, Attribute)
    View.DrawHotString(ustring, Boolean, ColorScheme)
    View.Move(Int32, Int32, Boolean)
    View.HasFocus
    View.OnAdded(View)
    View.OnRemoved(View)
    View.OnLeave(View)
    View.Focused
    View.MostFocused
    View.ColorScheme
    View.AddRune(Int32, Int32, Rune)
    View.ClearNeedsDisplay()
    View.DrawContent
    View.OnDrawContent(Rect)
    View.DrawContentComplete
    View.OnDrawContentComplete(Rect)
    View.SetFocus()
    View.KeyPress
    View.InvokeKeybindings(KeyEvent)
    View.AddKeyBinding(Key, Command[])
    View.ReplaceKeyBinding(Key, Key)
    View.ContainsKeyBinding(Key)
    View.ClearKeybindings()
    View.ClearKeybinding(Key)
    View.ClearKeybinding(Command[])
    View.AddCommand(Command, Func<Nullable<Boolean>>)
    View.GetSupportedCommands()
    View.GetKeyFromCommand(Command[])
    View.ProcessHotKey(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.Text
    View.AutoSize
    View.PreserveTrailingSpaces
    View.TextAlignment
    View.VerticalTextAlignment
    View.TextDirection
    View.IsInitialized
    View.IsAdded
    View.Enabled
    View.Visible
    View.Border
    View.ToString()
    View.GetAutoSize()
    View.GetHotKeySpecifierLength(Boolean)
    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(Boolean)
    View.BeginInit()
    View.EndInit()
    View.SetWidth(Int32, Int32)
    View.SetHeight(Int32, Int32)
    View.GetCurrentWidth(Int32)
    View.GetCurrentHeight(Int32)
    View.GetNormalColor()
    View.GetTopSuperView()
    Responder.Dispose()
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    System.Object.ReferenceEquals(System.Object, System.Object)
    Namespace: Terminal.Gui
    Assembly: Terminal.Gui.dll
    Syntax
    public class RadioGroup : View, IDisposable, ISupportInitializeNotification, ISupportInitialize

    Constructors

    | Improve this Doc View Source

    RadioGroup()

    Initializes a new instance of the RadioGroup class using Computed layout.
    Declaration
    public RadioGroup()
    | Improve this Doc View Source

    RadioGroup(ustring[], Int32)

    Initializes a new instance of the RadioGroup class using Computed layout.
    Declaration
    public RadioGroup(ustring[] radioLabels, int selected = 0)
    Parameters
    Type Name Description
    NStack.ustring[] radioLabels The radio labels; an array of strings that can contain hotkeys using an underscore before the letter.
    System.Int32 selected The index of the item to be selected, the value is clamped to the number of items.
    | Improve this Doc View Source

    RadioGroup(Int32, Int32, ustring[], Int32)

    Initializes a new instance of the RadioGroup class using Absolute layout. The View frame is computed from the provided radio labels.
    Declaration
    public RadioGroup(int x, int y, ustring[] radioLabels, int selected = 0)
    Parameters
    Type Name Description
    System.Int32 x The x coordinate.
    System.Int32 y The y coordinate.
    NStack.ustring[] radioLabels The radio labels; an array of strings that can contain hotkeys using an underscore before the letter.
    System.Int32 selected The item to be selected, the value is clamped to the number of items.
    | Improve this Doc View Source

    RadioGroup(Rect, ustring[], Int32)

    Initializes a new instance of the RadioGroup class using Absolute layout.
    Declaration
    public RadioGroup(Rect rect, ustring[] radioLabels, int selected = 0)
    Parameters
    Type Name Description
    Rect rect Boundaries for the radio group.
    NStack.ustring[] radioLabels The radio labels; an array of strings that can contain hotkeys using an underscore before the letter.
    System.Int32 selected The index of item to be selected, the value is clamped to the number of items.

    Properties

    | Improve this Doc View Source

    DisplayMode

    Gets or sets the DisplayModeLayout for this RadioGroup.
    Declaration
    public DisplayModeLayout DisplayMode { get; set; }
    Property Value
    Type Description
    DisplayModeLayout
    | Improve this Doc View Source

    HorizontalSpace

    Gets or sets the horizontal space for this RadioGroup if the DisplayMode is Horizontal
    Declaration
    public int HorizontalSpace { get; set; }
    Property Value
    Type Description
    System.Int32
    | Improve this Doc View Source

    RadioLabels

    The radio labels to display
    Declaration
    public ustring[] RadioLabels { get; set; }
    Property Value
    Type Description
    NStack.ustring[] The radio labels.
    | Improve this Doc View Source

    SelectedItem

    The currently selected item from the list of radio labels
    Declaration
    public int SelectedItem { get; set; }
    Property Value
    Type Description
    System.Int32 The selected.

    Methods

    | Improve this Doc View Source

    MouseEvent(MouseEvent)

    Declaration
    public override bool MouseEvent(MouseEvent me)
    Parameters
    Type Name Description
    MouseEvent me
    Returns
    Type Description
    System.Boolean
    Overrides
    Responder.MouseEvent(MouseEvent)
    | Improve this Doc View Source

    OnEnter(View)

    Declaration
    public override bool OnEnter(View view)
    Parameters
    Type Name Description
    View view
    Returns
    Type Description
    System.Boolean
    Overrides
    View.OnEnter(View)
    | Improve this Doc View Source

    OnSelectedItemChanged(Int32, Int32)

    Called whenever the current selected item changes. Invokes the SelectedItemChanged event.
    Declaration
    public virtual void OnSelectedItemChanged(int selectedItem, int previousSelectedItem)
    Parameters
    Type Name Description
    System.Int32 selectedItem
    System.Int32 previousSelectedItem
    | Improve this Doc View Source

    PositionCursor()

    Declaration
    public override void PositionCursor()
    Overrides
    View.PositionCursor()
    | Improve this Doc View Source

    ProcessColdKey(KeyEvent)

    Declaration
    public override bool ProcessColdKey(KeyEvent kb)
    Parameters
    Type Name Description
    KeyEvent kb
    Returns
    Type Description
    System.Boolean
    Overrides
    View.ProcessColdKey(KeyEvent)
    | Improve this Doc View Source

    ProcessKey(KeyEvent)

    Declaration
    public override bool ProcessKey(KeyEvent kb)
    Parameters
    Type Name Description
    KeyEvent kb
    Returns
    Type Description
    System.Boolean
    Overrides
    View.ProcessKey(KeyEvent)
    | Improve this Doc View Source

    Redraw(Rect)

    Declaration
    public override void Redraw(Rect bounds)
    Parameters
    Type Name Description
    Rect bounds
    Overrides
    View.Redraw(Rect)
    | Improve this Doc View Source

    Refresh()

    Allow to invoke the SelectedItemChanged after their creation.
    Declaration
    public void Refresh()

    Events

    | Improve this Doc View Source

    SelectedItemChanged

    Invoked when the selected radio label has changed.
    Declaration
    public event Action<SelectedItemChangedArgs> SelectedItemChanged
    Event Type
    Type Description
    System.Action<SelectedItemChangedArgs>

    Implements

    System.IDisposable
    System.ComponentModel.ISupportInitializeNotification
    System.ComponentModel.ISupportInitialize
    • Improve this Doc
    • View Source
    In This Article
    Back to top Generated by DocFX