Class PanelView
A container for single Child that will allow to drawn Border in
two ways. If UsePanelFrame the borders and the child will be accommodated in the available
panel size, otherwise the panel will be resized based on the child and borders thickness sizes.
Implements
System.IDisposable
System.ComponentModel.ISupportInitializeNotification
System.ComponentModel.ISupportInitialize
Inherited Members
Namespace: Terminal.Gui
Assembly: Terminal.Gui.dll
Syntax
public class PanelView : View
Constructors
PanelView()
Initializes a panel with a null child.
Declaration
public PanelView()
PanelView(View)
Initializes a panel with a valid child.
Declaration
public PanelView(View child)
Parameters
Type | Name | Description |
---|---|---|
View | child |
Properties
Border
Declaration
public override Border Border { get; set; }
Property Value
Type | Description |
---|---|
Border |
Overrides
Child
The child that will use this panel.
Declaration
public View Child { get; set; }
Property Value
Type | Description |
---|---|
View |
UsePanelFrame
Gets or sets if the panel size will used, otherwise the child size.
Declaration
public bool UsePanelFrame { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Methods
Add(View)
Adds a subview (child) to this view.
Declaration
public override void Add(View view)
Parameters
Type | Name | Description |
---|---|---|
View | view |
Overrides
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
Remove(View)
Removes a subview added via Add(View) or Add(View[]) from this View.
Declaration
public override void Remove(View view)
Parameters
Type | Name | Description |
---|---|---|
View | view |
Overrides
RemoveAll()
Removes all subviews (children) added via Add(View) or Add(View[]) from this View.
Declaration
public override void RemoveAll()
Overrides
Implements
System.IDisposable
System.ComponentModel.ISupportInitializeNotification
System.ComponentModel.ISupportInitialize