123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601 |
- ### YamlMime:ManagedReference
- items:
- - uid: Terminal.Gui.Dialog
- commentId: T:Terminal.Gui.Dialog
- id: Dialog
- parent: Terminal.Gui
- children:
- - Terminal.Gui.Dialog.#ctor(NStack.ustring,System.Int32,System.Int32,Terminal.Gui.Button[])
- - Terminal.Gui.Dialog.AddButton(Terminal.Gui.Button)
- - Terminal.Gui.Dialog.LayoutSubviews
- - Terminal.Gui.Dialog.ProcessKey(Terminal.Gui.KeyEvent)
- langs:
- - csharp
- - vb
- name: Dialog
- nameWithType: Dialog
- fullName: Terminal.Gui.Dialog
- type: Class
- source:
- remote:
- path: Terminal.Gui/Windows/Dialog.cs
- branch: refactor_core
- repo: tig:tig/gui.cs.git
- id: Dialog
- path: ../Terminal.Gui/Windows/Dialog.cs
- startLine: 21
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nThe <xref href=\"Terminal.Gui.Dialog\" data-throw-if-not-resolved=\"false\"></xref> <xref href=\"Terminal.Gui.View\" data-throw-if-not-resolved=\"false\"></xref> is a <xref href=\"Terminal.Gui.Window\" data-throw-if-not-resolved=\"false\"></xref> that by default is centered and contains one \nor more <xref href=\"Terminal.Gui.Button\" data-throw-if-not-resolved=\"false\"></xref>. It defaults to the <xref href=\"Terminal.Gui.Colors.Dialog\" data-throw-if-not-resolved=\"false\"></xref> color scheme and has a 1 cell padding around the edges.\n"
- remarks: "\nTo run the <xref href=\"Terminal.Gui.Dialog\" data-throw-if-not-resolved=\"false\"></xref> modally, create the <xref href=\"Terminal.Gui.Dialog\" data-throw-if-not-resolved=\"false\"></xref>, and pass it to <xref href=\"Terminal.Gui.Application.Run\" data-throw-if-not-resolved=\"false\"></xref>. \nThis will execute the dialog until it terminates via the [ESC] or [CTRL-Q] key, or when one of the views\nor buttons added to the dialog calls <xref href=\"Terminal.Gui.Application.RequestStop\" data-throw-if-not-resolved=\"false\"></xref>.\n"
- example: []
- syntax:
- content: 'public class Dialog : Window, IEnumerable'
- content.vb: >-
- Public Class Dialog
- Inherits Window
- Implements IEnumerable
- inheritance:
- - System.Object
- - Terminal.Gui.Responder
- - Terminal.Gui.View
- - Terminal.Gui.Toplevel
- - Terminal.Gui.Window
- derivedClasses:
- - Terminal.Gui.FileDialog
- implements:
- - System.Collections.IEnumerable
- inheritedMembers:
- - Terminal.Gui.Window.Title
- - Terminal.Gui.Window.GetEnumerator
- - Terminal.Gui.Window.Add(Terminal.Gui.View)
- - Terminal.Gui.Window.Remove(Terminal.Gui.View)
- - Terminal.Gui.Window.RemoveAll
- - Terminal.Gui.Window.Redraw(Terminal.Gui.Rect)
- - Terminal.Gui.Window.MouseEvent(Terminal.Gui.MouseEvent)
- - Terminal.Gui.Toplevel.Running
- - Terminal.Gui.Toplevel.Ready
- - Terminal.Gui.Toplevel.Create
- - Terminal.Gui.Toplevel.CanFocus
- - Terminal.Gui.Toplevel.Modal
- - Terminal.Gui.Toplevel.MenuBar
- - Terminal.Gui.Toplevel.StatusBar
- - Terminal.Gui.Toplevel.WillPresent
- - Terminal.Gui.View.Enter
- - Terminal.Gui.View.Leave
- - Terminal.Gui.View.MouseEnter
- - Terminal.Gui.View.MouseLeave
- - Terminal.Gui.View.Driver
- - Terminal.Gui.View.Subviews
- - Terminal.Gui.View.Id
- - Terminal.Gui.View.IsCurrentTop
- - Terminal.Gui.View.WantMousePositionReports
- - Terminal.Gui.View.WantContinuousButtonPressed
- - Terminal.Gui.View.Frame
- - Terminal.Gui.View.LayoutStyle
- - Terminal.Gui.View.Bounds
- - Terminal.Gui.View.X
- - Terminal.Gui.View.Y
- - Terminal.Gui.View.Width
- - Terminal.Gui.View.Height
- - Terminal.Gui.View.SuperView
- - Terminal.Gui.View.SetNeedsDisplay
- - Terminal.Gui.View.SetNeedsDisplay(Terminal.Gui.Rect)
- - Terminal.Gui.View.ChildNeedsDisplay
- - Terminal.Gui.View.Add(Terminal.Gui.View[])
- - Terminal.Gui.View.BringSubviewToFront(Terminal.Gui.View)
- - Terminal.Gui.View.SendSubviewToBack(Terminal.Gui.View)
- - Terminal.Gui.View.SendSubviewBackwards(Terminal.Gui.View)
- - Terminal.Gui.View.BringSubviewForward(Terminal.Gui.View)
- - Terminal.Gui.View.Clear
- - Terminal.Gui.View.Clear(Terminal.Gui.Rect)
- - Terminal.Gui.View.ScreenToView(System.Int32,System.Int32)
- - Terminal.Gui.View.ClipToBounds
- - Terminal.Gui.View.SetClip(Terminal.Gui.Rect)
- - Terminal.Gui.View.DrawFrame(Terminal.Gui.Rect,System.Int32,System.Boolean)
- - Terminal.Gui.View.DrawHotString(NStack.ustring,Terminal.Gui.Attribute,Terminal.Gui.Attribute)
- - Terminal.Gui.View.DrawHotString(NStack.ustring,System.Boolean,Terminal.Gui.ColorScheme)
- - Terminal.Gui.View.Move(System.Int32,System.Int32)
- - Terminal.Gui.View.PositionCursor
- - Terminal.Gui.View.HasFocus
- - Terminal.Gui.View.OnEnter
- - Terminal.Gui.View.OnLeave
- - Terminal.Gui.View.Focused
- - Terminal.Gui.View.MostFocused
- - Terminal.Gui.View.ColorScheme
- - Terminal.Gui.View.AddRune(System.Int32,System.Int32,System.Rune)
- - Terminal.Gui.View.ClearNeedsDisplay
- - Terminal.Gui.View.SetFocus(Terminal.Gui.View)
- - Terminal.Gui.View.KeyPress
- - Terminal.Gui.View.ProcessHotKey(Terminal.Gui.KeyEvent)
- - Terminal.Gui.View.ProcessColdKey(Terminal.Gui.KeyEvent)
- - Terminal.Gui.View.KeyDown
- - Terminal.Gui.View.OnKeyDown(Terminal.Gui.KeyEvent)
- - Terminal.Gui.View.KeyUp
- - Terminal.Gui.View.OnKeyUp(Terminal.Gui.KeyEvent)
- - Terminal.Gui.View.EnsureFocus
- - Terminal.Gui.View.FocusFirst
- - Terminal.Gui.View.FocusLast
- - Terminal.Gui.View.FocusPrev
- - Terminal.Gui.View.FocusNext
- - Terminal.Gui.View.ToString
- - Terminal.Gui.View.OnMouseEnter(Terminal.Gui.MouseEvent)
- - Terminal.Gui.View.OnMouseLeave(Terminal.Gui.MouseEvent)
- - 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)
- modifiers.csharp:
- - public
- - class
- modifiers.vb:
- - Public
- - Class
- - uid: Terminal.Gui.Dialog.#ctor(NStack.ustring,System.Int32,System.Int32,Terminal.Gui.Button[])
- commentId: M:Terminal.Gui.Dialog.#ctor(NStack.ustring,System.Int32,System.Int32,Terminal.Gui.Button[])
- id: '#ctor(NStack.ustring,System.Int32,System.Int32,Terminal.Gui.Button[])'
- parent: Terminal.Gui.Dialog
- langs:
- - csharp
- - vb
- name: Dialog(ustring, Int32, Int32, Button[])
- nameWithType: Dialog.Dialog(ustring, Int32, Int32, Button[])
- fullName: Terminal.Gui.Dialog.Dialog(NStack.ustring, System.Int32, System.Int32, Terminal.Gui.Button[])
- type: Constructor
- source:
- remote:
- path: Terminal.Gui/Windows/Dialog.cs
- branch: refactor_core
- repo: tig:tig/gui.cs.git
- id: .ctor
- path: ../Terminal.Gui/Windows/Dialog.cs
- startLine: 32
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nInitializes a new instance of the <xref href=\"Terminal.Gui.Dialog\" data-throw-if-not-resolved=\"false\"></xref> class with an optional set of <xref href=\"Terminal.Gui.Button\" data-throw-if-not-resolved=\"false\"></xref>s to display\n"
- example: []
- syntax:
- content: public Dialog(ustring title, int width, int height, params Button[] buttons)
- parameters:
- - id: title
- type: NStack.ustring
- description: Title for the dialog.
- - id: width
- type: System.Int32
- description: Width for the dialog.
- - id: height
- type: System.Int32
- description: Height for the dialog.
- - id: buttons
- type: Terminal.Gui.Button[]
- description: Optional buttons to lay out at the bottom of the dialog.
- content.vb: Public Sub New(title As ustring, width As Integer, height As Integer, ParamArray buttons As Button())
- overload: Terminal.Gui.Dialog.#ctor*
- nameWithType.vb: Dialog.Dialog(ustring, Int32, Int32, Button())
- modifiers.csharp:
- - public
- modifiers.vb:
- - Public
- fullName.vb: Terminal.Gui.Dialog.Dialog(NStack.ustring, System.Int32, System.Int32, Terminal.Gui.Button())
- name.vb: Dialog(ustring, Int32, Int32, Button())
- - uid: Terminal.Gui.Dialog.AddButton(Terminal.Gui.Button)
- commentId: M:Terminal.Gui.Dialog.AddButton(Terminal.Gui.Button)
- id: AddButton(Terminal.Gui.Button)
- parent: Terminal.Gui.Dialog
- langs:
- - csharp
- - vb
- name: AddButton(Button)
- nameWithType: Dialog.AddButton(Button)
- fullName: Terminal.Gui.Dialog.AddButton(Terminal.Gui.Button)
- type: Method
- source:
- remote:
- path: Terminal.Gui/Windows/Dialog.cs
- branch: refactor_core
- repo: tig:tig/gui.cs.git
- id: AddButton
- path: ../Terminal.Gui/Windows/Dialog.cs
- startLine: 53
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nAdds a <xref href=\"Terminal.Gui.Button\" data-throw-if-not-resolved=\"false\"></xref> to the <xref href=\"Terminal.Gui.Dialog\" data-throw-if-not-resolved=\"false\"></xref>, its layout will be controled by the <xref href=\"Terminal.Gui.Dialog\" data-throw-if-not-resolved=\"false\"></xref>\n"
- example: []
- syntax:
- content: public void AddButton(Button button)
- parameters:
- - id: button
- type: Terminal.Gui.Button
- description: Button to add.
- content.vb: Public Sub AddButton(button As Button)
- overload: Terminal.Gui.Dialog.AddButton*
- modifiers.csharp:
- - public
- modifiers.vb:
- - Public
- - uid: Terminal.Gui.Dialog.LayoutSubviews
- commentId: M:Terminal.Gui.Dialog.LayoutSubviews
- id: LayoutSubviews
- parent: Terminal.Gui.Dialog
- langs:
- - csharp
- - vb
- name: LayoutSubviews()
- nameWithType: Dialog.LayoutSubviews()
- fullName: Terminal.Gui.Dialog.LayoutSubviews()
- type: Method
- source:
- remote:
- path: Terminal.Gui/Windows/Dialog.cs
- branch: refactor_core
- repo: tig:tig/gui.cs.git
- id: LayoutSubviews
- path: ../Terminal.Gui/Windows/Dialog.cs
- startLine: 63
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- example: []
- syntax:
- content: public override void LayoutSubviews()
- content.vb: Public Overrides Sub LayoutSubviews
- overridden: Terminal.Gui.View.LayoutSubviews
- overload: Terminal.Gui.Dialog.LayoutSubviews*
- modifiers.csharp:
- - public
- - override
- modifiers.vb:
- - Public
- - Overrides
- - uid: Terminal.Gui.Dialog.ProcessKey(Terminal.Gui.KeyEvent)
- commentId: M:Terminal.Gui.Dialog.ProcessKey(Terminal.Gui.KeyEvent)
- id: ProcessKey(Terminal.Gui.KeyEvent)
- parent: Terminal.Gui.Dialog
- langs:
- - csharp
- - vb
- name: ProcessKey(KeyEvent)
- nameWithType: Dialog.ProcessKey(KeyEvent)
- fullName: Terminal.Gui.Dialog.ProcessKey(Terminal.Gui.KeyEvent)
- type: Method
- source:
- remote:
- path: Terminal.Gui/Windows/Dialog.cs
- branch: refactor_core
- repo: tig:tig/gui.cs.git
- id: ProcessKey
- path: ../Terminal.Gui/Windows/Dialog.cs
- startLine: 88
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- example: []
- syntax:
- content: public override bool ProcessKey(KeyEvent kb)
- parameters:
- - id: kb
- type: Terminal.Gui.KeyEvent
- return:
- type: System.Boolean
- content.vb: Public Overrides Function ProcessKey(kb As KeyEvent) As Boolean
- overridden: Terminal.Gui.Toplevel.ProcessKey(Terminal.Gui.KeyEvent)
- overload: Terminal.Gui.Dialog.ProcessKey*
- modifiers.csharp:
- - public
- - override
- modifiers.vb:
- - Public
- - Overrides
- references:
- - uid: Terminal.Gui.Dialog
- commentId: T:Terminal.Gui.Dialog
- parent: Terminal.Gui
- name: Dialog
- nameWithType: Dialog
- fullName: Terminal.Gui.Dialog
- - uid: Terminal.Gui.View
- commentId: T:Terminal.Gui.View
- parent: Terminal.Gui
- name: View
- nameWithType: View
- fullName: Terminal.Gui.View
- - uid: Terminal.Gui.Window
- commentId: T:Terminal.Gui.Window
- parent: Terminal.Gui
- name: Window
- nameWithType: Window
- fullName: Terminal.Gui.Window
- - uid: Terminal.Gui.Button
- commentId: T:Terminal.Gui.Button
- parent: Terminal.Gui
- name: Button
- nameWithType: Button
- fullName: Terminal.Gui.Button
- - uid: Terminal.Gui.Colors.Dialog
- commentId: P:Terminal.Gui.Colors.Dialog
- isExternal: true
- - uid: Terminal.Gui.Application.Run
- commentId: M:Terminal.Gui.Application.Run
- isExternal: true
- - uid: Terminal.Gui.Application.RequestStop
- commentId: M:Terminal.Gui.Application.RequestStop
- isExternal: true
- - uid: Terminal.Gui
- commentId: N:Terminal.Gui
- name: Terminal.Gui
- nameWithType: Terminal.Gui
- fullName: Terminal.Gui
- - uid: System.Object
- commentId: T:System.Object
- parent: System
- isExternal: true
- name: Object
- nameWithType: Object
- fullName: System.Object
- - uid: Terminal.Gui.Responder
- commentId: T:Terminal.Gui.Responder
- parent: Terminal.Gui
- name: Responder
- nameWithType: Responder
- fullName: Terminal.Gui.Responder
- - uid: Terminal.Gui.Toplevel
- commentId: T:Terminal.Gui.Toplevel
- parent: Terminal.Gui
- name: Toplevel
- nameWithType: Toplevel
- fullName: Terminal.Gui.Toplevel
- - uid: System.Collections.IEnumerable
- commentId: T:System.Collections.IEnumerable
- parent: System.Collections
- isExternal: true
- name: IEnumerable
- nameWithType: IEnumerable
- fullName: System.Collections.IEnumerable
- - uid: Terminal.Gui.Window.Title
- commentId: P:Terminal.Gui.Window.Title
- parent: Terminal.Gui.Window
- name: Title
- nameWithType: Window.Title
- fullName: Terminal.Gui.Window.Title
- - uid: Terminal.Gui.Window.GetEnumerator
- commentId: M:Terminal.Gui.Window.GetEnumerator
- parent: Terminal.Gui.Window
- name: GetEnumerator()
- nameWithType: Window.GetEnumerator()
- fullName: Terminal.Gui.Window.GetEnumerator()
- spec.csharp:
- - uid: Terminal.Gui.Window.GetEnumerator
- name: GetEnumerator
- nameWithType: Window.GetEnumerator
- fullName: Terminal.Gui.Window.GetEnumerator
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: Terminal.Gui.Window.GetEnumerator
- name: GetEnumerator
- nameWithType: Window.GetEnumerator
- fullName: Terminal.Gui.Window.GetEnumerator
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- - uid: Terminal.Gui.Window.Add(Terminal.Gui.View)
- commentId: M:Terminal.Gui.Window.Add(Terminal.Gui.View)
- parent: Terminal.Gui.Window
- name: Add(View)
- nameWithType: Window.Add(View)
- fullName: Terminal.Gui.Window.Add(Terminal.Gui.View)
- spec.csharp:
- - uid: Terminal.Gui.Window.Add(Terminal.Gui.View)
- name: Add
- nameWithType: Window.Add
- fullName: Terminal.Gui.Window.Add
- - name: (
- nameWithType: (
- fullName: (
- - uid: Terminal.Gui.View
- name: View
- nameWithType: View
- fullName: Terminal.Gui.View
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: Terminal.Gui.Window.Add(Terminal.Gui.View)
- name: Add
- nameWithType: Window.Add
- fullName: Terminal.Gui.Window.Add
- - name: (
- nameWithType: (
- fullName: (
- - uid: Terminal.Gui.View
- name: View
- nameWithType: View
- fullName: Terminal.Gui.View
- - name: )
- nameWithType: )
- fullName: )
- - uid: Terminal.Gui.Window.Remove(Terminal.Gui.View)
- commentId: M:Terminal.Gui.Window.Remove(Terminal.Gui.View)
- parent: Terminal.Gui.Window
- name: Remove(View)
- nameWithType: Window.Remove(View)
- fullName: Terminal.Gui.Window.Remove(Terminal.Gui.View)
- spec.csharp:
- - uid: Terminal.Gui.Window.Remove(Terminal.Gui.View)
- name: Remove
- nameWithType: Window.Remove
- fullName: Terminal.Gui.Window.Remove
- - name: (
- nameWithType: (
- fullName: (
- - uid: Terminal.Gui.View
- name: View
- nameWithType: View
- fullName: Terminal.Gui.View
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: Terminal.Gui.Window.Remove(Terminal.Gui.View)
- name: Remove
- nameWithType: Window.Remove
- fullName: Terminal.Gui.Window.Remove
- - name: (
- nameWithType: (
- fullName: (
- - uid: Terminal.Gui.View
- name: View
- nameWithType: View
- fullName: Terminal.Gui.View
- - name: )
- nameWithType: )
- fullName: )
- - uid: Terminal.Gui.Window.RemoveAll
- commentId: M:Terminal.Gui.Window.RemoveAll
- parent: Terminal.Gui.Window
- name: RemoveAll()
- nameWithType: Window.RemoveAll()
- fullName: Terminal.Gui.Window.RemoveAll()
- spec.csharp:
- - uid: Terminal.Gui.Window.RemoveAll
- name: RemoveAll
- nameWithType: Window.RemoveAll
- fullName: Terminal.Gui.Window.RemoveAll
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: Terminal.Gui.Window.RemoveAll
- name: RemoveAll
- nameWithType: Window.RemoveAll
- fullName: Terminal.Gui.Window.RemoveAll
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- - uid: Terminal.Gui.Window.Redraw(Terminal.Gui.Rect)
- commentId: M:Terminal.Gui.Window.Redraw(Terminal.Gui.Rect)
- parent: Terminal.Gui.Window
- name: Redraw(Rect)
- nameWithType: Window.Redraw(Rect)
- fullName: Terminal.Gui.Window.Redraw(Terminal.Gui.Rect)
- spec.csharp:
- - uid: Terminal.Gui.Window.Redraw(Terminal.Gui.Rect)
- name: Redraw
- nameWithType: Window.Redraw
- fullName: Terminal.Gui.Window.Redraw
- - name: (
- nameWithType: (
- fullName: (
- - uid: Terminal.Gui.Rect
- name: Rect
- nameWithType: Rect
- fullName: Terminal.Gui.Rect
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: Terminal.Gui.Window.Redraw(Terminal.Gui.Rect)
- name: Redraw
- nameWithType: Window.Redraw
- fullName: Terminal.Gui.Window.Redraw
- - name: (
- nameWithType: (
- fullName: (
- - uid: Terminal.Gui.Rect
- name: Rect
- nameWithType: Rect
- fullName: Terminal.Gui.Rect
- - name: )
- nameWithType: )
- fullName: )
- - uid: Terminal.Gui.Window.MouseEvent(Terminal.Gui.MouseEvent)
- commentId: M:Terminal.Gui.Window.MouseEvent(Terminal.Gui.MouseEvent)
- parent: Terminal.Gui.Window
- name: MouseEvent(MouseEvent)
- nameWithType: Window.MouseEvent(MouseEvent)
- fullName: Terminal.Gui.Window.MouseEvent(Terminal.Gui.MouseEvent)
- spec.csharp:
- - uid: Terminal.Gui.Window.MouseEvent(Terminal.Gui.MouseEvent)
- name: MouseEvent
- nameWithType: Window.MouseEvent
- fullName: Terminal.Gui.Window.MouseEvent
- - name: (
- nameWithType: (
- fullName: (
- - uid: Terminal.Gui.MouseEvent
- name: MouseEvent
- nameWithType: MouseEvent
- fullName: Terminal.Gui.MouseEvent
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: Terminal.Gui.Window.MouseEvent(Terminal.Gui.MouseEvent)
- name: MouseEvent
- nameWithType: Window.MouseEvent
- fullName: Terminal.Gui.Window.MouseEvent
- - name: (
- nameWithType: (
- fullName: (
- - uid: Terminal.Gui.MouseEvent
- name: MouseEvent
- nameWithType: MouseEvent
- fullName: Terminal.Gui.MouseEvent
- - name: )
- nameWithType: )
- fullName: )
- - uid: Terminal.Gui.Toplevel.Running
- commentId: P:Terminal.Gui.Toplevel.Running
- parent: Terminal.Gui.Toplevel
- name: Running
- nameWithType: Toplevel.Running
- fullName: Terminal.Gui.Toplevel.Running
- - uid: Terminal.Gui.Toplevel.Ready
- commentId: E:Terminal.Gui.Toplevel.Ready
- parent: Terminal.Gui.Toplevel
- name: Ready
- nameWithType: Toplevel.Ready
- fullName: Terminal.Gui.Toplevel.Ready
- - uid: Terminal.Gui.Toplevel.Create
- commentId: M:Terminal.Gui.Toplevel.Create
- parent: Terminal.Gui.Toplevel
- name: Create()
- nameWithType: Toplevel.Create()
- fullName: Terminal.Gui.Toplevel.Create()
- spec.csharp:
- - uid: Terminal.Gui.Toplevel.Create
- name: Create
- nameWithType: Toplevel.Create
- fullName: Terminal.Gui.Toplevel.Create
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: Terminal.Gui.Toplevel.Create
- name: Create
- nameWithType: Toplevel.Create
- fullName: Terminal.Gui.Toplevel.Create
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- - uid: Terminal.Gui.Toplevel.CanFocus
- commentId: P:Terminal.Gui.Toplevel.CanFocus
- parent: Terminal.Gui.Toplevel
- name: CanFocus
- nameWithType: Toplevel.CanFocus
- fullName: Terminal.Gui.Toplevel.CanFocus
- - uid: Terminal.Gui.Toplevel.Modal
- commentId: P:Terminal.Gui.Toplevel.Modal
- parent: Terminal.Gui.Toplevel
- name: Modal
- nameWithType: Toplevel.Modal
- fullName: Terminal.Gui.Toplevel.Modal
- - uid: Terminal.Gui.Toplevel.MenuBar
- commentId: P:Terminal.Gui.Toplevel.MenuBar
- parent: Terminal.Gui.Toplevel
- name: MenuBar
- nameWithType: Toplevel.MenuBar
- fullName: Terminal.Gui.Toplevel.MenuBar
- - uid: Terminal.Gui.Toplevel.StatusBar
- commentId: P:Terminal.Gui.Toplevel.StatusBar
- parent: Terminal.Gui.Toplevel
- name: StatusBar
- nameWithType: Toplevel.StatusBar
- fullName: Terminal.Gui.Toplevel.StatusBar
- - uid: Terminal.Gui.Toplevel.WillPresent
- commentId: M:Terminal.Gui.Toplevel.WillPresent
- parent: Terminal.Gui.Toplevel
- name: WillPresent()
- nameWithType: Toplevel.WillPresent()
- fullName: Terminal.Gui.Toplevel.WillPresent()
- spec.csharp:
- - uid: Terminal.Gui.Toplevel.WillPresent
- name: WillPresent
- nameWithType: Toplevel.WillPresent
- fullName: Terminal.Gui.Toplevel.WillPresent
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: Terminal.Gui.Toplevel.WillPresent
- name: WillPresent
- nameWithType: Toplevel.WillPresent
- fullName: Terminal.Gui.Toplevel.WillPresent
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- - uid: Terminal.Gui.View.Enter
- commentId: E:Terminal.Gui.View.Enter
- parent: Terminal.Gui.View
- name: Enter
- nameWithType: View.Enter
- fullName: Terminal.Gui.View.Enter
- - uid: Terminal.Gui.View.Leave
- commentId: E:Terminal.Gui.View.Leave
- parent: Terminal.Gui.View
- name: Leave
- nameWithType: View.Leave
- fullName: Terminal.Gui.View.Leave
- - uid: Terminal.Gui.View.MouseEnter
- commentId: E:Terminal.Gui.View.MouseEnter
- parent: Terminal.Gui.View
- name: MouseEnter
- nameWithType: View.MouseEnter
- fullName: Terminal.Gui.View.MouseEnter
- - uid: Terminal.Gui.View.MouseLeave
- commentId: E:Terminal.Gui.View.MouseLeave
- parent: Terminal.Gui.View
- name: MouseLeave
- nameWithType: View.MouseLeave
- fullName: Terminal.Gui.View.MouseLeave
- - uid: Terminal.Gui.View.Driver
- commentId: P:Terminal.Gui.View.Driver
- parent: Terminal.Gui.View
- name: Driver
- nameWithType: View.Driver
- fullName: Terminal.Gui.View.Driver
- - uid: Terminal.Gui.View.Subviews
- commentId: P:Terminal.Gui.View.Subviews
- parent: Terminal.Gui.View
- name: Subviews
- nameWithType: View.Subviews
- fullName: Terminal.Gui.View.Subviews
- - uid: Terminal.Gui.View.Id
- commentId: P:Terminal.Gui.View.Id
- parent: Terminal.Gui.View
- name: Id
- nameWithType: View.Id
- fullName: Terminal.Gui.View.Id
- - uid: Terminal.Gui.View.IsCurrentTop
- commentId: P:Terminal.Gui.View.IsCurrentTop
- parent: Terminal.Gui.View
- name: IsCurrentTop
- nameWithType: View.IsCurrentTop
- fullName: Terminal.Gui.View.IsCurrentTop
- - uid: Terminal.Gui.View.WantMousePositionReports
- commentId: P:Terminal.Gui.View.WantMousePositionReports
- parent: Terminal.Gui.View
- name: WantMousePositionReports
- nameWithType: View.WantMousePositionReports
- fullName: Terminal.Gui.View.WantMousePositionReports
- - uid: Terminal.Gui.View.WantContinuousButtonPressed
- commentId: P:Terminal.Gui.View.WantContinuousButtonPressed
- parent: Terminal.Gui.View
- name: WantContinuousButtonPressed
- nameWithType: View.WantContinuousButtonPressed
- fullName: Terminal.Gui.View.WantContinuousButtonPressed
- - uid: Terminal.Gui.View.Frame
- commentId: P:Terminal.Gui.View.Frame
- parent: Terminal.Gui.View
- name: Frame
- nameWithType: View.Frame
- fullName: Terminal.Gui.View.Frame
- - uid: Terminal.Gui.View.LayoutStyle
- commentId: P:Terminal.Gui.View.LayoutStyle
- parent: Terminal.Gui.View
- name: LayoutStyle
- nameWithType: View.LayoutStyle
- fullName: Terminal.Gui.View.LayoutStyle
- - uid: Terminal.Gui.View.Bounds
- commentId: P:Terminal.Gui.View.Bounds
- parent: Terminal.Gui.View
- name: Bounds
- nameWithType: View.Bounds
- fullName: Terminal.Gui.View.Bounds
- - uid: Terminal.Gui.View.X
- commentId: P:Terminal.Gui.View.X
- parent: Terminal.Gui.View
- name: X
- nameWithType: View.X
- fullName: Terminal.Gui.View.X
- - uid: Terminal.Gui.View.Y
- commentId: P:Terminal.Gui.View.Y
- parent: Terminal.Gui.View
- name: Y
- nameWithType: View.Y
- fullName: Terminal.Gui.View.Y
- - uid: Terminal.Gui.View.Width
- commentId: P:Terminal.Gui.View.Width
- parent: Terminal.Gui.View
- name: Width
- nameWithType: View.Width
- fullName: Terminal.Gui.View.Width
- - uid: Terminal.Gui.View.Height
- commentId: P:Terminal.Gui.View.Height
- parent: Terminal.Gui.View
- name: Height
- nameWithType: View.Height
- fullName: Terminal.Gui.View.Height
- - uid: Terminal.Gui.View.SuperView
- commentId: P:Terminal.Gui.View.SuperView
- parent: Terminal.Gui.View
- name: SuperView
- nameWithType: View.SuperView
- fullName: Terminal.Gui.View.SuperView
- - uid: Terminal.Gui.View.SetNeedsDisplay
- commentId: M:Terminal.Gui.View.SetNeedsDisplay
- parent: Terminal.Gui.View
- name: SetNeedsDisplay()
- nameWithType: View.SetNeedsDisplay()
- fullName: Terminal.Gui.View.SetNeedsDisplay()
- spec.csharp:
- - uid: Terminal.Gui.View.SetNeedsDisplay
- name: SetNeedsDisplay
- nameWithType: View.SetNeedsDisplay
- fullName: Terminal.Gui.View.SetNeedsDisplay
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: Terminal.Gui.View.SetNeedsDisplay
- name: SetNeedsDisplay
- nameWithType: View.SetNeedsDisplay
- fullName: Terminal.Gui.View.SetNeedsDisplay
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- - uid: Terminal.Gui.View.SetNeedsDisplay(Terminal.Gui.Rect)
- commentId: M:Terminal.Gui.View.SetNeedsDisplay(Terminal.Gui.Rect)
- parent: Terminal.Gui.View
- name: SetNeedsDisplay(Rect)
- nameWithType: View.SetNeedsDisplay(Rect)
- fullName: Terminal.Gui.View.SetNeedsDisplay(Terminal.Gui.Rect)
- spec.csharp:
- - uid: Terminal.Gui.View.SetNeedsDisplay(Terminal.Gui.Rect)
- name: SetNeedsDisplay
- nameWithType: View.SetNeedsDisplay
- fullName: Terminal.Gui.View.SetNeedsDisplay
- - name: (
- nameWithType: (
- fullName: (
- - uid: Terminal.Gui.Rect
- name: Rect
- nameWithType: Rect
- fullName: Terminal.Gui.Rect
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: Terminal.Gui.View.SetNeedsDisplay(Terminal.Gui.Rect)
- name: SetNeedsDisplay
- nameWithType: View.SetNeedsDisplay
- fullName: Terminal.Gui.View.SetNeedsDisplay
- - name: (
- nameWithType: (
- fullName: (
- - uid: Terminal.Gui.Rect
- name: Rect
- nameWithType: Rect
- fullName: Terminal.Gui.Rect
- - name: )
- nameWithType: )
- fullName: )
- - uid: Terminal.Gui.View.ChildNeedsDisplay
- commentId: M:Terminal.Gui.View.ChildNeedsDisplay
- parent: Terminal.Gui.View
- name: ChildNeedsDisplay()
- nameWithType: View.ChildNeedsDisplay()
- fullName: Terminal.Gui.View.ChildNeedsDisplay()
- spec.csharp:
- - uid: Terminal.Gui.View.ChildNeedsDisplay
- name: ChildNeedsDisplay
- nameWithType: View.ChildNeedsDisplay
- fullName: Terminal.Gui.View.ChildNeedsDisplay
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: Terminal.Gui.View.ChildNeedsDisplay
- name: ChildNeedsDisplay
- nameWithType: View.ChildNeedsDisplay
- fullName: Terminal.Gui.View.ChildNeedsDisplay
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- - uid: Terminal.Gui.View.Add(Terminal.Gui.View[])
- commentId: M:Terminal.Gui.View.Add(Terminal.Gui.View[])
- parent: Terminal.Gui.View
- name: Add(View[])
- nameWithType: View.Add(View[])
- fullName: Terminal.Gui.View.Add(Terminal.Gui.View[])
- nameWithType.vb: View.Add(View())
- fullName.vb: Terminal.Gui.View.Add(Terminal.Gui.View())
- name.vb: Add(View())
- spec.csharp:
- - uid: Terminal.Gui.View.Add(Terminal.Gui.View[])
- name: Add
- nameWithType: View.Add
- fullName: Terminal.Gui.View.Add
- - name: (
- nameWithType: (
- fullName: (
- - uid: Terminal.Gui.View
- name: View
- nameWithType: View
- fullName: Terminal.Gui.View
- - name: '[]'
- nameWithType: '[]'
- fullName: '[]'
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: Terminal.Gui.View.Add(Terminal.Gui.View[])
- name: Add
- nameWithType: View.Add
- fullName: Terminal.Gui.View.Add
- - name: (
- nameWithType: (
- fullName: (
- - uid: Terminal.Gui.View
- name: View
- nameWithType: View
- fullName: Terminal.Gui.View
- - name: ()
- nameWithType: ()
- fullName: ()
- - name: )
- nameWithType: )
- fullName: )
- - uid: Terminal.Gui.View.BringSubviewToFront(Terminal.Gui.View)
- commentId: M:Terminal.Gui.View.BringSubviewToFront(Terminal.Gui.View)
- parent: Terminal.Gui.View
- name: BringSubviewToFront(View)
- nameWithType: View.BringSubviewToFront(View)
- fullName: Terminal.Gui.View.BringSubviewToFront(Terminal.Gui.View)
- spec.csharp:
- - uid: Terminal.Gui.View.BringSubviewToFront(Terminal.Gui.View)
- name: BringSubviewToFront
- nameWithType: View.BringSubviewToFront
- fullName: Terminal.Gui.View.BringSubviewToFront
- - name: (
- nameWithType: (
- fullName: (
- - uid: Terminal.Gui.View
- name: View
- nameWithType: View
- fullName: Terminal.Gui.View
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: Terminal.Gui.View.BringSubviewToFront(Terminal.Gui.View)
- name: BringSubviewToFront
- nameWithType: View.BringSubviewToFront
- fullName: Terminal.Gui.View.BringSubviewToFront
- - name: (
- nameWithType: (
- fullName: (
- - uid: Terminal.Gui.View
- name: View
- nameWithType: View
- fullName: Terminal.Gui.View
- - name: )
- nameWithType: )
- fullName: )
- - uid: Terminal.Gui.View.SendSubviewToBack(Terminal.Gui.View)
- commentId: M:Terminal.Gui.View.SendSubviewToBack(Terminal.Gui.View)
- parent: Terminal.Gui.View
- name: SendSubviewToBack(View)
- nameWithType: View.SendSubviewToBack(View)
- fullName: Terminal.Gui.View.SendSubviewToBack(Terminal.Gui.View)
- spec.csharp:
- - uid: Terminal.Gui.View.SendSubviewToBack(Terminal.Gui.View)
- name: SendSubviewToBack
- nameWithType: View.SendSubviewToBack
- fullName: Terminal.Gui.View.SendSubviewToBack
- - name: (
- nameWithType: (
- fullName: (
- - uid: Terminal.Gui.View
- name: View
- nameWithType: View
- fullName: Terminal.Gui.View
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: Terminal.Gui.View.SendSubviewToBack(Terminal.Gui.View)
- name: SendSubviewToBack
- nameWithType: View.SendSubviewToBack
- fullName: Terminal.Gui.View.SendSubviewToBack
- - name: (
- nameWithType: (
- fullName: (
- - uid: Terminal.Gui.View
- name: View
- nameWithType: View
- fullName: Terminal.Gui.View
- - name: )
- nameWithType: )
- fullName: )
- - uid: Terminal.Gui.View.SendSubviewBackwards(Terminal.Gui.View)
- commentId: M:Terminal.Gui.View.SendSubviewBackwards(Terminal.Gui.View)
- parent: Terminal.Gui.View
- name: SendSubviewBackwards(View)
- nameWithType: View.SendSubviewBackwards(View)
- fullName: Terminal.Gui.View.SendSubviewBackwards(Terminal.Gui.View)
- spec.csharp:
- - uid: Terminal.Gui.View.SendSubviewBackwards(Terminal.Gui.View)
- name: SendSubviewBackwards
- nameWithType: View.SendSubviewBackwards
- fullName: Terminal.Gui.View.SendSubviewBackwards
- - name: (
- nameWithType: (
- fullName: (
- - uid: Terminal.Gui.View
- name: View
- nameWithType: View
- fullName: Terminal.Gui.View
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: Terminal.Gui.View.SendSubviewBackwards(Terminal.Gui.View)
- name: SendSubviewBackwards
- nameWithType: View.SendSubviewBackwards
- fullName: Terminal.Gui.View.SendSubviewBackwards
- - name: (
- nameWithType: (
- fullName: (
- - uid: Terminal.Gui.View
- name: View
- nameWithType: View
- fullName: Terminal.Gui.View
- - name: )
- nameWithType: )
- fullName: )
- - uid: Terminal.Gui.View.BringSubviewForward(Terminal.Gui.View)
- commentId: M:Terminal.Gui.View.BringSubviewForward(Terminal.Gui.View)
- parent: Terminal.Gui.View
- name: BringSubviewForward(View)
- nameWithType: View.BringSubviewForward(View)
- fullName: Terminal.Gui.View.BringSubviewForward(Terminal.Gui.View)
- spec.csharp:
- - uid: Terminal.Gui.View.BringSubviewForward(Terminal.Gui.View)
- name: BringSubviewForward
- nameWithType: View.BringSubviewForward
- fullName: Terminal.Gui.View.BringSubviewForward
- - name: (
- nameWithType: (
- fullName: (
- - uid: Terminal.Gui.View
- name: View
- nameWithType: View
- fullName: Terminal.Gui.View
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: Terminal.Gui.View.BringSubviewForward(Terminal.Gui.View)
- name: BringSubviewForward
- nameWithType: View.BringSubviewForward
- fullName: Terminal.Gui.View.BringSubviewForward
- - name: (
- nameWithType: (
- fullName: (
- - uid: Terminal.Gui.View
- name: View
- nameWithType: View
- fullName: Terminal.Gui.View
- - name: )
- nameWithType: )
- fullName: )
- - uid: Terminal.Gui.View.Clear
- commentId: M:Terminal.Gui.View.Clear
- parent: Terminal.Gui.View
- name: Clear()
- nameWithType: View.Clear()
- fullName: Terminal.Gui.View.Clear()
- spec.csharp:
- - uid: Terminal.Gui.View.Clear
- name: Clear
- nameWithType: View.Clear
- fullName: Terminal.Gui.View.Clear
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: Terminal.Gui.View.Clear
- name: Clear
- nameWithType: View.Clear
- fullName: Terminal.Gui.View.Clear
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- - uid: Terminal.Gui.View.Clear(Terminal.Gui.Rect)
- commentId: M:Terminal.Gui.View.Clear(Terminal.Gui.Rect)
- parent: Terminal.Gui.View
- name: Clear(Rect)
- nameWithType: View.Clear(Rect)
- fullName: Terminal.Gui.View.Clear(Terminal.Gui.Rect)
- spec.csharp:
- - uid: Terminal.Gui.View.Clear(Terminal.Gui.Rect)
- name: Clear
- nameWithType: View.Clear
- fullName: Terminal.Gui.View.Clear
- - name: (
- nameWithType: (
- fullName: (
- - uid: Terminal.Gui.Rect
- name: Rect
- nameWithType: Rect
- fullName: Terminal.Gui.Rect
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: Terminal.Gui.View.Clear(Terminal.Gui.Rect)
- name: Clear
- nameWithType: View.Clear
- fullName: Terminal.Gui.View.Clear
- - name: (
- nameWithType: (
- fullName: (
- - uid: Terminal.Gui.Rect
- name: Rect
- nameWithType: Rect
- fullName: Terminal.Gui.Rect
- - name: )
- nameWithType: )
- fullName: )
- - uid: Terminal.Gui.View.ScreenToView(System.Int32,System.Int32)
- commentId: M:Terminal.Gui.View.ScreenToView(System.Int32,System.Int32)
- parent: Terminal.Gui.View
- isExternal: true
- name: ScreenToView(Int32, Int32)
- nameWithType: View.ScreenToView(Int32, Int32)
- fullName: Terminal.Gui.View.ScreenToView(System.Int32, System.Int32)
- spec.csharp:
- - uid: Terminal.Gui.View.ScreenToView(System.Int32,System.Int32)
- name: ScreenToView
- nameWithType: View.ScreenToView
- fullName: Terminal.Gui.View.ScreenToView
- - name: (
- nameWithType: (
- fullName: (
- - uid: System.Int32
- name: Int32
- nameWithType: Int32
- fullName: System.Int32
- isExternal: true
- - name: ', '
- nameWithType: ', '
- fullName: ', '
- - uid: System.Int32
- name: Int32
- nameWithType: Int32
- fullName: System.Int32
- isExternal: true
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: Terminal.Gui.View.ScreenToView(System.Int32,System.Int32)
- name: ScreenToView
- nameWithType: View.ScreenToView
- fullName: Terminal.Gui.View.ScreenToView
- - name: (
- nameWithType: (
- fullName: (
- - uid: System.Int32
- name: Int32
- nameWithType: Int32
- fullName: System.Int32
- isExternal: true
- - name: ', '
- nameWithType: ', '
- fullName: ', '
- - uid: System.Int32
- name: Int32
- nameWithType: Int32
- fullName: System.Int32
- isExternal: true
- - name: )
- nameWithType: )
- fullName: )
- - uid: Terminal.Gui.View.ClipToBounds
- commentId: M:Terminal.Gui.View.ClipToBounds
- parent: Terminal.Gui.View
- name: ClipToBounds()
- nameWithType: View.ClipToBounds()
- fullName: Terminal.Gui.View.ClipToBounds()
- spec.csharp:
- - uid: Terminal.Gui.View.ClipToBounds
- name: ClipToBounds
- nameWithType: View.ClipToBounds
- fullName: Terminal.Gui.View.ClipToBounds
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: Terminal.Gui.View.ClipToBounds
- name: ClipToBounds
- nameWithType: View.ClipToBounds
- fullName: Terminal.Gui.View.ClipToBounds
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- - uid: Terminal.Gui.View.SetClip(Terminal.Gui.Rect)
- commentId: M:Terminal.Gui.View.SetClip(Terminal.Gui.Rect)
- parent: Terminal.Gui.View
- name: SetClip(Rect)
- nameWithType: View.SetClip(Rect)
- fullName: Terminal.Gui.View.SetClip(Terminal.Gui.Rect)
- spec.csharp:
- - uid: Terminal.Gui.View.SetClip(Terminal.Gui.Rect)
- name: SetClip
- nameWithType: View.SetClip
- fullName: Terminal.Gui.View.SetClip
- - name: (
- nameWithType: (
- fullName: (
- - uid: Terminal.Gui.Rect
- name: Rect
- nameWithType: Rect
- fullName: Terminal.Gui.Rect
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: Terminal.Gui.View.SetClip(Terminal.Gui.Rect)
- name: SetClip
- nameWithType: View.SetClip
- fullName: Terminal.Gui.View.SetClip
- - name: (
- nameWithType: (
- fullName: (
- - uid: Terminal.Gui.Rect
- name: Rect
- nameWithType: Rect
- fullName: Terminal.Gui.Rect
- - name: )
- nameWithType: )
- fullName: )
- - uid: Terminal.Gui.View.DrawFrame(Terminal.Gui.Rect,System.Int32,System.Boolean)
- commentId: M:Terminal.Gui.View.DrawFrame(Terminal.Gui.Rect,System.Int32,System.Boolean)
- parent: Terminal.Gui.View
- isExternal: true
- name: DrawFrame(Rect, Int32, Boolean)
- nameWithType: View.DrawFrame(Rect, Int32, Boolean)
- fullName: Terminal.Gui.View.DrawFrame(Terminal.Gui.Rect, System.Int32, System.Boolean)
- spec.csharp:
- - uid: Terminal.Gui.View.DrawFrame(Terminal.Gui.Rect,System.Int32,System.Boolean)
- name: DrawFrame
- nameWithType: View.DrawFrame
- fullName: Terminal.Gui.View.DrawFrame
- - name: (
- nameWithType: (
- fullName: (
- - uid: Terminal.Gui.Rect
- name: Rect
- nameWithType: Rect
- fullName: Terminal.Gui.Rect
- - name: ', '
- nameWithType: ', '
- fullName: ', '
- - uid: System.Int32
- name: Int32
- nameWithType: Int32
- fullName: System.Int32
- isExternal: true
- - name: ', '
- nameWithType: ', '
- fullName: ', '
- - uid: System.Boolean
- name: Boolean
- nameWithType: Boolean
- fullName: System.Boolean
- isExternal: true
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: Terminal.Gui.View.DrawFrame(Terminal.Gui.Rect,System.Int32,System.Boolean)
- name: DrawFrame
- nameWithType: View.DrawFrame
- fullName: Terminal.Gui.View.DrawFrame
- - name: (
- nameWithType: (
- fullName: (
- - uid: Terminal.Gui.Rect
- name: Rect
- nameWithType: Rect
- fullName: Terminal.Gui.Rect
- - name: ', '
- nameWithType: ', '
- fullName: ', '
- - uid: System.Int32
- name: Int32
- nameWithType: Int32
- fullName: System.Int32
- isExternal: true
- - name: ', '
- nameWithType: ', '
- fullName: ', '
- - uid: System.Boolean
- name: Boolean
- nameWithType: Boolean
- fullName: System.Boolean
- isExternal: true
- - name: )
- nameWithType: )
- fullName: )
- - uid: Terminal.Gui.View.DrawHotString(NStack.ustring,Terminal.Gui.Attribute,Terminal.Gui.Attribute)
- commentId: M:Terminal.Gui.View.DrawHotString(NStack.ustring,Terminal.Gui.Attribute,Terminal.Gui.Attribute)
- parent: Terminal.Gui.View
- isExternal: true
- name: DrawHotString(ustring, Attribute, Attribute)
- nameWithType: View.DrawHotString(ustring, Attribute, Attribute)
- fullName: Terminal.Gui.View.DrawHotString(NStack.ustring, Terminal.Gui.Attribute, Terminal.Gui.Attribute)
- spec.csharp:
- - uid: Terminal.Gui.View.DrawHotString(NStack.ustring,Terminal.Gui.Attribute,Terminal.Gui.Attribute)
- name: DrawHotString
- nameWithType: View.DrawHotString
- fullName: Terminal.Gui.View.DrawHotString
- - name: (
- nameWithType: (
- fullName: (
- - uid: NStack.ustring
- name: ustring
- nameWithType: ustring
- fullName: NStack.ustring
- isExternal: true
- - name: ', '
- nameWithType: ', '
- fullName: ', '
- - uid: Terminal.Gui.Attribute
- name: Attribute
- nameWithType: Attribute
- fullName: Terminal.Gui.Attribute
- - name: ', '
- nameWithType: ', '
- fullName: ', '
- - uid: Terminal.Gui.Attribute
- name: Attribute
- nameWithType: Attribute
- fullName: Terminal.Gui.Attribute
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: Terminal.Gui.View.DrawHotString(NStack.ustring,Terminal.Gui.Attribute,Terminal.Gui.Attribute)
- name: DrawHotString
- nameWithType: View.DrawHotString
- fullName: Terminal.Gui.View.DrawHotString
- - name: (
- nameWithType: (
- fullName: (
- - uid: NStack.ustring
- name: ustring
- nameWithType: ustring
- fullName: NStack.ustring
- isExternal: true
- - name: ', '
- nameWithType: ', '
- fullName: ', '
- - uid: Terminal.Gui.Attribute
- name: Attribute
- nameWithType: Attribute
- fullName: Terminal.Gui.Attribute
- - name: ', '
- nameWithType: ', '
- fullName: ', '
- - uid: Terminal.Gui.Attribute
- name: Attribute
- nameWithType: Attribute
- fullName: Terminal.Gui.Attribute
- - name: )
- nameWithType: )
- fullName: )
- - uid: Terminal.Gui.View.DrawHotString(NStack.ustring,System.Boolean,Terminal.Gui.ColorScheme)
- commentId: M:Terminal.Gui.View.DrawHotString(NStack.ustring,System.Boolean,Terminal.Gui.ColorScheme)
- parent: Terminal.Gui.View
- isExternal: true
- name: DrawHotString(ustring, Boolean, ColorScheme)
- nameWithType: View.DrawHotString(ustring, Boolean, ColorScheme)
- fullName: Terminal.Gui.View.DrawHotString(NStack.ustring, System.Boolean, Terminal.Gui.ColorScheme)
- spec.csharp:
- - uid: Terminal.Gui.View.DrawHotString(NStack.ustring,System.Boolean,Terminal.Gui.ColorScheme)
- name: DrawHotString
- nameWithType: View.DrawHotString
- fullName: Terminal.Gui.View.DrawHotString
- - name: (
- nameWithType: (
- fullName: (
- - uid: NStack.ustring
- name: ustring
- nameWithType: ustring
- fullName: NStack.ustring
- isExternal: true
- - name: ', '
- nameWithType: ', '
- fullName: ', '
- - uid: System.Boolean
- name: Boolean
- nameWithType: Boolean
- fullName: System.Boolean
- isExternal: true
- - name: ', '
- nameWithType: ', '
- fullName: ', '
- - uid: Terminal.Gui.ColorScheme
- name: ColorScheme
- nameWithType: ColorScheme
- fullName: Terminal.Gui.ColorScheme
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: Terminal.Gui.View.DrawHotString(NStack.ustring,System.Boolean,Terminal.Gui.ColorScheme)
- name: DrawHotString
- nameWithType: View.DrawHotString
- fullName: Terminal.Gui.View.DrawHotString
- - name: (
- nameWithType: (
- fullName: (
- - uid: NStack.ustring
- name: ustring
- nameWithType: ustring
- fullName: NStack.ustring
- isExternal: true
- - name: ', '
- nameWithType: ', '
- fullName: ', '
- - uid: System.Boolean
- name: Boolean
- nameWithType: Boolean
- fullName: System.Boolean
- isExternal: true
- - name: ', '
- nameWithType: ', '
- fullName: ', '
- - uid: Terminal.Gui.ColorScheme
- name: ColorScheme
- nameWithType: ColorScheme
- fullName: Terminal.Gui.ColorScheme
- - name: )
- nameWithType: )
- fullName: )
- - uid: Terminal.Gui.View.Move(System.Int32,System.Int32)
- commentId: M:Terminal.Gui.View.Move(System.Int32,System.Int32)
- parent: Terminal.Gui.View
- isExternal: true
- name: Move(Int32, Int32)
- nameWithType: View.Move(Int32, Int32)
- fullName: Terminal.Gui.View.Move(System.Int32, System.Int32)
- spec.csharp:
- - uid: Terminal.Gui.View.Move(System.Int32,System.Int32)
- name: Move
- nameWithType: View.Move
- fullName: Terminal.Gui.View.Move
- - name: (
- nameWithType: (
- fullName: (
- - uid: System.Int32
- name: Int32
- nameWithType: Int32
- fullName: System.Int32
- isExternal: true
- - name: ', '
- nameWithType: ', '
- fullName: ', '
- - uid: System.Int32
- name: Int32
- nameWithType: Int32
- fullName: System.Int32
- isExternal: true
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: Terminal.Gui.View.Move(System.Int32,System.Int32)
- name: Move
- nameWithType: View.Move
- fullName: Terminal.Gui.View.Move
- - name: (
- nameWithType: (
- fullName: (
- - uid: System.Int32
- name: Int32
- nameWithType: Int32
- fullName: System.Int32
- isExternal: true
- - name: ', '
- nameWithType: ', '
- fullName: ', '
- - uid: System.Int32
- name: Int32
- nameWithType: Int32
- fullName: System.Int32
- isExternal: true
- - name: )
- nameWithType: )
- fullName: )
- - uid: Terminal.Gui.View.PositionCursor
- commentId: M:Terminal.Gui.View.PositionCursor
- parent: Terminal.Gui.View
- name: PositionCursor()
- nameWithType: View.PositionCursor()
- fullName: Terminal.Gui.View.PositionCursor()
- spec.csharp:
- - uid: Terminal.Gui.View.PositionCursor
- name: PositionCursor
- nameWithType: View.PositionCursor
- fullName: Terminal.Gui.View.PositionCursor
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: Terminal.Gui.View.PositionCursor
- name: PositionCursor
- nameWithType: View.PositionCursor
- fullName: Terminal.Gui.View.PositionCursor
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- - uid: Terminal.Gui.View.HasFocus
- commentId: P:Terminal.Gui.View.HasFocus
- parent: Terminal.Gui.View
- name: HasFocus
- nameWithType: View.HasFocus
- fullName: Terminal.Gui.View.HasFocus
- - uid: Terminal.Gui.View.OnEnter
- commentId: M:Terminal.Gui.View.OnEnter
- parent: Terminal.Gui.View
- name: OnEnter()
- nameWithType: View.OnEnter()
- fullName: Terminal.Gui.View.OnEnter()
- spec.csharp:
- - uid: Terminal.Gui.View.OnEnter
- name: OnEnter
- nameWithType: View.OnEnter
- fullName: Terminal.Gui.View.OnEnter
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: Terminal.Gui.View.OnEnter
- name: OnEnter
- nameWithType: View.OnEnter
- fullName: Terminal.Gui.View.OnEnter
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- - uid: Terminal.Gui.View.OnLeave
- commentId: M:Terminal.Gui.View.OnLeave
- parent: Terminal.Gui.View
- name: OnLeave()
- nameWithType: View.OnLeave()
- fullName: Terminal.Gui.View.OnLeave()
- spec.csharp:
- - uid: Terminal.Gui.View.OnLeave
- name: OnLeave
- nameWithType: View.OnLeave
- fullName: Terminal.Gui.View.OnLeave
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: Terminal.Gui.View.OnLeave
- name: OnLeave
- nameWithType: View.OnLeave
- fullName: Terminal.Gui.View.OnLeave
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- - uid: Terminal.Gui.View.Focused
- commentId: P:Terminal.Gui.View.Focused
- parent: Terminal.Gui.View
- name: Focused
- nameWithType: View.Focused
- fullName: Terminal.Gui.View.Focused
- - uid: Terminal.Gui.View.MostFocused
- commentId: P:Terminal.Gui.View.MostFocused
- parent: Terminal.Gui.View
- name: MostFocused
- nameWithType: View.MostFocused
- fullName: Terminal.Gui.View.MostFocused
- - uid: Terminal.Gui.View.ColorScheme
- commentId: P:Terminal.Gui.View.ColorScheme
- parent: Terminal.Gui.View
- name: ColorScheme
- nameWithType: View.ColorScheme
- fullName: Terminal.Gui.View.ColorScheme
- - uid: Terminal.Gui.View.AddRune(System.Int32,System.Int32,System.Rune)
- commentId: M:Terminal.Gui.View.AddRune(System.Int32,System.Int32,System.Rune)
- parent: Terminal.Gui.View
- isExternal: true
- name: AddRune(Int32, Int32, Rune)
- nameWithType: View.AddRune(Int32, Int32, Rune)
- fullName: Terminal.Gui.View.AddRune(System.Int32, System.Int32, System.Rune)
- spec.csharp:
- - uid: Terminal.Gui.View.AddRune(System.Int32,System.Int32,System.Rune)
- name: AddRune
- nameWithType: View.AddRune
- fullName: Terminal.Gui.View.AddRune
- - name: (
- nameWithType: (
- fullName: (
- - uid: System.Int32
- name: Int32
- nameWithType: Int32
- fullName: System.Int32
- isExternal: true
- - name: ', '
- nameWithType: ', '
- fullName: ', '
- - uid: System.Int32
- name: Int32
- nameWithType: Int32
- fullName: System.Int32
- isExternal: true
- - name: ', '
- nameWithType: ', '
- fullName: ', '
- - uid: System.Rune
- name: Rune
- nameWithType: Rune
- fullName: System.Rune
- isExternal: true
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: Terminal.Gui.View.AddRune(System.Int32,System.Int32,System.Rune)
- name: AddRune
- nameWithType: View.AddRune
- fullName: Terminal.Gui.View.AddRune
- - name: (
- nameWithType: (
- fullName: (
- - uid: System.Int32
- name: Int32
- nameWithType: Int32
- fullName: System.Int32
- isExternal: true
- - name: ', '
- nameWithType: ', '
- fullName: ', '
- - uid: System.Int32
- name: Int32
- nameWithType: Int32
- fullName: System.Int32
- isExternal: true
- - name: ', '
- nameWithType: ', '
- fullName: ', '
- - uid: System.Rune
- name: Rune
- nameWithType: Rune
- fullName: System.Rune
- isExternal: true
- - name: )
- nameWithType: )
- fullName: )
- - uid: Terminal.Gui.View.ClearNeedsDisplay
- commentId: M:Terminal.Gui.View.ClearNeedsDisplay
- parent: Terminal.Gui.View
- name: ClearNeedsDisplay()
- nameWithType: View.ClearNeedsDisplay()
- fullName: Terminal.Gui.View.ClearNeedsDisplay()
- spec.csharp:
- - uid: Terminal.Gui.View.ClearNeedsDisplay
- name: ClearNeedsDisplay
- nameWithType: View.ClearNeedsDisplay
- fullName: Terminal.Gui.View.ClearNeedsDisplay
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: Terminal.Gui.View.ClearNeedsDisplay
- name: ClearNeedsDisplay
- nameWithType: View.ClearNeedsDisplay
- fullName: Terminal.Gui.View.ClearNeedsDisplay
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- - uid: Terminal.Gui.View.SetFocus(Terminal.Gui.View)
- commentId: M:Terminal.Gui.View.SetFocus(Terminal.Gui.View)
- parent: Terminal.Gui.View
- name: SetFocus(View)
- nameWithType: View.SetFocus(View)
- fullName: Terminal.Gui.View.SetFocus(Terminal.Gui.View)
- spec.csharp:
- - uid: Terminal.Gui.View.SetFocus(Terminal.Gui.View)
- name: SetFocus
- nameWithType: View.SetFocus
- fullName: Terminal.Gui.View.SetFocus
- - name: (
- nameWithType: (
- fullName: (
- - uid: Terminal.Gui.View
- name: View
- nameWithType: View
- fullName: Terminal.Gui.View
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: Terminal.Gui.View.SetFocus(Terminal.Gui.View)
- name: SetFocus
- nameWithType: View.SetFocus
- fullName: Terminal.Gui.View.SetFocus
- - name: (
- nameWithType: (
- fullName: (
- - uid: Terminal.Gui.View
- name: View
- nameWithType: View
- fullName: Terminal.Gui.View
- - name: )
- nameWithType: )
- fullName: )
- - uid: Terminal.Gui.View.KeyPress
- commentId: E:Terminal.Gui.View.KeyPress
- parent: Terminal.Gui.View
- name: KeyPress
- nameWithType: View.KeyPress
- fullName: Terminal.Gui.View.KeyPress
- - uid: Terminal.Gui.View.ProcessHotKey(Terminal.Gui.KeyEvent)
- commentId: M:Terminal.Gui.View.ProcessHotKey(Terminal.Gui.KeyEvent)
- parent: Terminal.Gui.View
- name: ProcessHotKey(KeyEvent)
- nameWithType: View.ProcessHotKey(KeyEvent)
- fullName: Terminal.Gui.View.ProcessHotKey(Terminal.Gui.KeyEvent)
- spec.csharp:
- - uid: Terminal.Gui.View.ProcessHotKey(Terminal.Gui.KeyEvent)
- name: ProcessHotKey
- nameWithType: View.ProcessHotKey
- fullName: Terminal.Gui.View.ProcessHotKey
- - name: (
- nameWithType: (
- fullName: (
- - uid: Terminal.Gui.KeyEvent
- name: KeyEvent
- nameWithType: KeyEvent
- fullName: Terminal.Gui.KeyEvent
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: Terminal.Gui.View.ProcessHotKey(Terminal.Gui.KeyEvent)
- name: ProcessHotKey
- nameWithType: View.ProcessHotKey
- fullName: Terminal.Gui.View.ProcessHotKey
- - name: (
- nameWithType: (
- fullName: (
- - uid: Terminal.Gui.KeyEvent
- name: KeyEvent
- nameWithType: KeyEvent
- fullName: Terminal.Gui.KeyEvent
- - name: )
- nameWithType: )
- fullName: )
- - uid: Terminal.Gui.View.ProcessColdKey(Terminal.Gui.KeyEvent)
- commentId: M:Terminal.Gui.View.ProcessColdKey(Terminal.Gui.KeyEvent)
- parent: Terminal.Gui.View
- name: ProcessColdKey(KeyEvent)
- nameWithType: View.ProcessColdKey(KeyEvent)
- fullName: Terminal.Gui.View.ProcessColdKey(Terminal.Gui.KeyEvent)
- spec.csharp:
- - uid: Terminal.Gui.View.ProcessColdKey(Terminal.Gui.KeyEvent)
- name: ProcessColdKey
- nameWithType: View.ProcessColdKey
- fullName: Terminal.Gui.View.ProcessColdKey
- - name: (
- nameWithType: (
- fullName: (
- - uid: Terminal.Gui.KeyEvent
- name: KeyEvent
- nameWithType: KeyEvent
- fullName: Terminal.Gui.KeyEvent
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: Terminal.Gui.View.ProcessColdKey(Terminal.Gui.KeyEvent)
- name: ProcessColdKey
- nameWithType: View.ProcessColdKey
- fullName: Terminal.Gui.View.ProcessColdKey
- - name: (
- nameWithType: (
- fullName: (
- - uid: Terminal.Gui.KeyEvent
- name: KeyEvent
- nameWithType: KeyEvent
- fullName: Terminal.Gui.KeyEvent
- - name: )
- nameWithType: )
- fullName: )
- - uid: Terminal.Gui.View.KeyDown
- commentId: E:Terminal.Gui.View.KeyDown
- parent: Terminal.Gui.View
- name: KeyDown
- nameWithType: View.KeyDown
- fullName: Terminal.Gui.View.KeyDown
- - uid: Terminal.Gui.View.OnKeyDown(Terminal.Gui.KeyEvent)
- commentId: M:Terminal.Gui.View.OnKeyDown(Terminal.Gui.KeyEvent)
- parent: Terminal.Gui.View
- name: OnKeyDown(KeyEvent)
- nameWithType: View.OnKeyDown(KeyEvent)
- fullName: Terminal.Gui.View.OnKeyDown(Terminal.Gui.KeyEvent)
- spec.csharp:
- - uid: Terminal.Gui.View.OnKeyDown(Terminal.Gui.KeyEvent)
- name: OnKeyDown
- nameWithType: View.OnKeyDown
- fullName: Terminal.Gui.View.OnKeyDown
- - name: (
- nameWithType: (
- fullName: (
- - uid: Terminal.Gui.KeyEvent
- name: KeyEvent
- nameWithType: KeyEvent
- fullName: Terminal.Gui.KeyEvent
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: Terminal.Gui.View.OnKeyDown(Terminal.Gui.KeyEvent)
- name: OnKeyDown
- nameWithType: View.OnKeyDown
- fullName: Terminal.Gui.View.OnKeyDown
- - name: (
- nameWithType: (
- fullName: (
- - uid: Terminal.Gui.KeyEvent
- name: KeyEvent
- nameWithType: KeyEvent
- fullName: Terminal.Gui.KeyEvent
- - name: )
- nameWithType: )
- fullName: )
- - uid: Terminal.Gui.View.KeyUp
- commentId: E:Terminal.Gui.View.KeyUp
- parent: Terminal.Gui.View
- name: KeyUp
- nameWithType: View.KeyUp
- fullName: Terminal.Gui.View.KeyUp
- - uid: Terminal.Gui.View.OnKeyUp(Terminal.Gui.KeyEvent)
- commentId: M:Terminal.Gui.View.OnKeyUp(Terminal.Gui.KeyEvent)
- parent: Terminal.Gui.View
- name: OnKeyUp(KeyEvent)
- nameWithType: View.OnKeyUp(KeyEvent)
- fullName: Terminal.Gui.View.OnKeyUp(Terminal.Gui.KeyEvent)
- spec.csharp:
- - uid: Terminal.Gui.View.OnKeyUp(Terminal.Gui.KeyEvent)
- name: OnKeyUp
- nameWithType: View.OnKeyUp
- fullName: Terminal.Gui.View.OnKeyUp
- - name: (
- nameWithType: (
- fullName: (
- - uid: Terminal.Gui.KeyEvent
- name: KeyEvent
- nameWithType: KeyEvent
- fullName: Terminal.Gui.KeyEvent
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: Terminal.Gui.View.OnKeyUp(Terminal.Gui.KeyEvent)
- name: OnKeyUp
- nameWithType: View.OnKeyUp
- fullName: Terminal.Gui.View.OnKeyUp
- - name: (
- nameWithType: (
- fullName: (
- - uid: Terminal.Gui.KeyEvent
- name: KeyEvent
- nameWithType: KeyEvent
- fullName: Terminal.Gui.KeyEvent
- - name: )
- nameWithType: )
- fullName: )
- - uid: Terminal.Gui.View.EnsureFocus
- commentId: M:Terminal.Gui.View.EnsureFocus
- parent: Terminal.Gui.View
- name: EnsureFocus()
- nameWithType: View.EnsureFocus()
- fullName: Terminal.Gui.View.EnsureFocus()
- spec.csharp:
- - uid: Terminal.Gui.View.EnsureFocus
- name: EnsureFocus
- nameWithType: View.EnsureFocus
- fullName: Terminal.Gui.View.EnsureFocus
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: Terminal.Gui.View.EnsureFocus
- name: EnsureFocus
- nameWithType: View.EnsureFocus
- fullName: Terminal.Gui.View.EnsureFocus
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- - uid: Terminal.Gui.View.FocusFirst
- commentId: M:Terminal.Gui.View.FocusFirst
- parent: Terminal.Gui.View
- name: FocusFirst()
- nameWithType: View.FocusFirst()
- fullName: Terminal.Gui.View.FocusFirst()
- spec.csharp:
- - uid: Terminal.Gui.View.FocusFirst
- name: FocusFirst
- nameWithType: View.FocusFirst
- fullName: Terminal.Gui.View.FocusFirst
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: Terminal.Gui.View.FocusFirst
- name: FocusFirst
- nameWithType: View.FocusFirst
- fullName: Terminal.Gui.View.FocusFirst
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- - uid: Terminal.Gui.View.FocusLast
- commentId: M:Terminal.Gui.View.FocusLast
- parent: Terminal.Gui.View
- name: FocusLast()
- nameWithType: View.FocusLast()
- fullName: Terminal.Gui.View.FocusLast()
- spec.csharp:
- - uid: Terminal.Gui.View.FocusLast
- name: FocusLast
- nameWithType: View.FocusLast
- fullName: Terminal.Gui.View.FocusLast
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: Terminal.Gui.View.FocusLast
- name: FocusLast
- nameWithType: View.FocusLast
- fullName: Terminal.Gui.View.FocusLast
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- - uid: Terminal.Gui.View.FocusPrev
- commentId: M:Terminal.Gui.View.FocusPrev
- parent: Terminal.Gui.View
- name: FocusPrev()
- nameWithType: View.FocusPrev()
- fullName: Terminal.Gui.View.FocusPrev()
- spec.csharp:
- - uid: Terminal.Gui.View.FocusPrev
- name: FocusPrev
- nameWithType: View.FocusPrev
- fullName: Terminal.Gui.View.FocusPrev
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: Terminal.Gui.View.FocusPrev
- name: FocusPrev
- nameWithType: View.FocusPrev
- fullName: Terminal.Gui.View.FocusPrev
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- - uid: Terminal.Gui.View.FocusNext
- commentId: M:Terminal.Gui.View.FocusNext
- parent: Terminal.Gui.View
- name: FocusNext()
- nameWithType: View.FocusNext()
- fullName: Terminal.Gui.View.FocusNext()
- spec.csharp:
- - uid: Terminal.Gui.View.FocusNext
- name: FocusNext
- nameWithType: View.FocusNext
- fullName: Terminal.Gui.View.FocusNext
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: Terminal.Gui.View.FocusNext
- name: FocusNext
- nameWithType: View.FocusNext
- fullName: Terminal.Gui.View.FocusNext
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- - uid: Terminal.Gui.View.ToString
- commentId: M:Terminal.Gui.View.ToString
- parent: Terminal.Gui.View
- name: ToString()
- nameWithType: View.ToString()
- fullName: Terminal.Gui.View.ToString()
- spec.csharp:
- - uid: Terminal.Gui.View.ToString
- name: ToString
- nameWithType: View.ToString
- fullName: Terminal.Gui.View.ToString
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: Terminal.Gui.View.ToString
- name: ToString
- nameWithType: View.ToString
- fullName: Terminal.Gui.View.ToString
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- - uid: Terminal.Gui.View.OnMouseEnter(Terminal.Gui.MouseEvent)
- commentId: M:Terminal.Gui.View.OnMouseEnter(Terminal.Gui.MouseEvent)
- parent: Terminal.Gui.View
- name: OnMouseEnter(MouseEvent)
- nameWithType: View.OnMouseEnter(MouseEvent)
- fullName: Terminal.Gui.View.OnMouseEnter(Terminal.Gui.MouseEvent)
- spec.csharp:
- - uid: Terminal.Gui.View.OnMouseEnter(Terminal.Gui.MouseEvent)
- name: OnMouseEnter
- nameWithType: View.OnMouseEnter
- fullName: Terminal.Gui.View.OnMouseEnter
- - name: (
- nameWithType: (
- fullName: (
- - uid: Terminal.Gui.MouseEvent
- name: MouseEvent
- nameWithType: MouseEvent
- fullName: Terminal.Gui.MouseEvent
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: Terminal.Gui.View.OnMouseEnter(Terminal.Gui.MouseEvent)
- name: OnMouseEnter
- nameWithType: View.OnMouseEnter
- fullName: Terminal.Gui.View.OnMouseEnter
- - name: (
- nameWithType: (
- fullName: (
- - uid: Terminal.Gui.MouseEvent
- name: MouseEvent
- nameWithType: MouseEvent
- fullName: Terminal.Gui.MouseEvent
- - name: )
- nameWithType: )
- fullName: )
- - uid: Terminal.Gui.View.OnMouseLeave(Terminal.Gui.MouseEvent)
- commentId: M:Terminal.Gui.View.OnMouseLeave(Terminal.Gui.MouseEvent)
- parent: Terminal.Gui.View
- name: OnMouseLeave(MouseEvent)
- nameWithType: View.OnMouseLeave(MouseEvent)
- fullName: Terminal.Gui.View.OnMouseLeave(Terminal.Gui.MouseEvent)
- spec.csharp:
- - uid: Terminal.Gui.View.OnMouseLeave(Terminal.Gui.MouseEvent)
- name: OnMouseLeave
- nameWithType: View.OnMouseLeave
- fullName: Terminal.Gui.View.OnMouseLeave
- - name: (
- nameWithType: (
- fullName: (
- - uid: Terminal.Gui.MouseEvent
- name: MouseEvent
- nameWithType: MouseEvent
- fullName: Terminal.Gui.MouseEvent
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: Terminal.Gui.View.OnMouseLeave(Terminal.Gui.MouseEvent)
- name: OnMouseLeave
- nameWithType: View.OnMouseLeave
- fullName: Terminal.Gui.View.OnMouseLeave
- - name: (
- nameWithType: (
- fullName: (
- - uid: Terminal.Gui.MouseEvent
- name: MouseEvent
- nameWithType: MouseEvent
- fullName: Terminal.Gui.MouseEvent
- - name: )
- nameWithType: )
- fullName: )
- - uid: System.Object.Equals(System.Object)
- commentId: M:System.Object.Equals(System.Object)
- parent: System.Object
- isExternal: true
- name: Equals(Object)
- nameWithType: Object.Equals(Object)
- fullName: System.Object.Equals(System.Object)
- spec.csharp:
- - uid: System.Object.Equals(System.Object)
- name: Equals
- nameWithType: Object.Equals
- fullName: System.Object.Equals
- isExternal: true
- - name: (
- nameWithType: (
- fullName: (
- - uid: System.Object
- name: Object
- nameWithType: Object
- fullName: System.Object
- isExternal: true
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: System.Object.Equals(System.Object)
- name: Equals
- nameWithType: Object.Equals
- fullName: System.Object.Equals
- isExternal: true
- - name: (
- nameWithType: (
- fullName: (
- - uid: System.Object
- name: Object
- nameWithType: Object
- fullName: System.Object
- isExternal: true
- - name: )
- nameWithType: )
- fullName: )
- - uid: System.Object.Equals(System.Object,System.Object)
- commentId: M:System.Object.Equals(System.Object,System.Object)
- parent: System.Object
- isExternal: true
- name: Equals(Object, Object)
- nameWithType: Object.Equals(Object, Object)
- fullName: System.Object.Equals(System.Object, System.Object)
- spec.csharp:
- - uid: System.Object.Equals(System.Object,System.Object)
- name: Equals
- nameWithType: Object.Equals
- fullName: System.Object.Equals
- isExternal: true
- - name: (
- nameWithType: (
- fullName: (
- - uid: System.Object
- name: Object
- nameWithType: Object
- fullName: System.Object
- isExternal: true
- - name: ', '
- nameWithType: ', '
- fullName: ', '
- - uid: System.Object
- name: Object
- nameWithType: Object
- fullName: System.Object
- isExternal: true
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: System.Object.Equals(System.Object,System.Object)
- name: Equals
- nameWithType: Object.Equals
- fullName: System.Object.Equals
- isExternal: true
- - name: (
- nameWithType: (
- fullName: (
- - uid: System.Object
- name: Object
- nameWithType: Object
- fullName: System.Object
- isExternal: true
- - name: ', '
- nameWithType: ', '
- fullName: ', '
- - uid: System.Object
- name: Object
- nameWithType: Object
- fullName: System.Object
- isExternal: true
- - name: )
- nameWithType: )
- fullName: )
- - uid: System.Object.GetHashCode
- commentId: M:System.Object.GetHashCode
- parent: System.Object
- isExternal: true
- name: GetHashCode()
- nameWithType: Object.GetHashCode()
- fullName: System.Object.GetHashCode()
- spec.csharp:
- - uid: System.Object.GetHashCode
- name: GetHashCode
- nameWithType: Object.GetHashCode
- fullName: System.Object.GetHashCode
- isExternal: true
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: System.Object.GetHashCode
- name: GetHashCode
- nameWithType: Object.GetHashCode
- fullName: System.Object.GetHashCode
- isExternal: true
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- - uid: System.Object.GetType
- commentId: M:System.Object.GetType
- parent: System.Object
- isExternal: true
- name: GetType()
- nameWithType: Object.GetType()
- fullName: System.Object.GetType()
- spec.csharp:
- - uid: System.Object.GetType
- name: GetType
- nameWithType: Object.GetType
- fullName: System.Object.GetType
- isExternal: true
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: System.Object.GetType
- name: GetType
- nameWithType: Object.GetType
- fullName: System.Object.GetType
- isExternal: true
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- - uid: System.Object.MemberwiseClone
- commentId: M:System.Object.MemberwiseClone
- parent: System.Object
- isExternal: true
- name: MemberwiseClone()
- nameWithType: Object.MemberwiseClone()
- fullName: System.Object.MemberwiseClone()
- spec.csharp:
- - uid: System.Object.MemberwiseClone
- name: MemberwiseClone
- nameWithType: Object.MemberwiseClone
- fullName: System.Object.MemberwiseClone
- isExternal: true
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: System.Object.MemberwiseClone
- name: MemberwiseClone
- nameWithType: Object.MemberwiseClone
- fullName: System.Object.MemberwiseClone
- isExternal: true
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- - uid: System.Object.ReferenceEquals(System.Object,System.Object)
- commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
- parent: System.Object
- isExternal: true
- name: ReferenceEquals(Object, Object)
- nameWithType: Object.ReferenceEquals(Object, Object)
- fullName: System.Object.ReferenceEquals(System.Object, System.Object)
- spec.csharp:
- - uid: System.Object.ReferenceEquals(System.Object,System.Object)
- name: ReferenceEquals
- nameWithType: Object.ReferenceEquals
- fullName: System.Object.ReferenceEquals
- isExternal: true
- - name: (
- nameWithType: (
- fullName: (
- - uid: System.Object
- name: Object
- nameWithType: Object
- fullName: System.Object
- isExternal: true
- - name: ', '
- nameWithType: ', '
- fullName: ', '
- - uid: System.Object
- name: Object
- nameWithType: Object
- fullName: System.Object
- isExternal: true
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: System.Object.ReferenceEquals(System.Object,System.Object)
- name: ReferenceEquals
- nameWithType: Object.ReferenceEquals
- fullName: System.Object.ReferenceEquals
- isExternal: true
- - name: (
- nameWithType: (
- fullName: (
- - uid: System.Object
- name: Object
- nameWithType: Object
- fullName: System.Object
- isExternal: true
- - name: ', '
- nameWithType: ', '
- fullName: ', '
- - uid: System.Object
- name: Object
- nameWithType: Object
- fullName: System.Object
- isExternal: true
- - name: )
- nameWithType: )
- fullName: )
- - uid: System
- commentId: N:System
- isExternal: true
- name: System
- nameWithType: System
- fullName: System
- - uid: System.Collections
- commentId: N:System.Collections
- isExternal: true
- name: System.Collections
- nameWithType: System.Collections
- fullName: System.Collections
- - uid: Terminal.Gui.Dialog.#ctor*
- commentId: Overload:Terminal.Gui.Dialog.#ctor
- name: Dialog
- nameWithType: Dialog.Dialog
- fullName: Terminal.Gui.Dialog.Dialog
- - uid: NStack.ustring
- commentId: T:NStack.ustring
- parent: NStack
- isExternal: true
- name: ustring
- nameWithType: ustring
- fullName: NStack.ustring
- - uid: System.Int32
- commentId: T:System.Int32
- parent: System
- isExternal: true
- name: Int32
- nameWithType: Int32
- fullName: System.Int32
- - uid: Terminal.Gui.Button[]
- isExternal: true
- name: Button[]
- nameWithType: Button[]
- fullName: Terminal.Gui.Button[]
- nameWithType.vb: Button()
- fullName.vb: Terminal.Gui.Button()
- name.vb: Button()
- spec.csharp:
- - uid: Terminal.Gui.Button
- name: Button
- nameWithType: Button
- fullName: Terminal.Gui.Button
- - name: '[]'
- nameWithType: '[]'
- fullName: '[]'
- spec.vb:
- - uid: Terminal.Gui.Button
- name: Button
- nameWithType: Button
- fullName: Terminal.Gui.Button
- - name: ()
- nameWithType: ()
- fullName: ()
- - uid: NStack
- commentId: N:NStack
- isExternal: true
- name: NStack
- nameWithType: NStack
- fullName: NStack
- - uid: Terminal.Gui.Dialog.AddButton*
- commentId: Overload:Terminal.Gui.Dialog.AddButton
- name: AddButton
- nameWithType: Dialog.AddButton
- fullName: Terminal.Gui.Dialog.AddButton
- - uid: Terminal.Gui.Dialog.LayoutSubviews
- commentId: M:Terminal.Gui.Dialog.LayoutSubviews
- parent: Terminal.Gui.Dialog
- name: LayoutSubviews()
- nameWithType: Dialog.LayoutSubviews()
- fullName: Terminal.Gui.Dialog.LayoutSubviews()
- spec.csharp:
- - uid: Terminal.Gui.Dialog.LayoutSubviews
- name: LayoutSubviews
- nameWithType: Dialog.LayoutSubviews
- fullName: Terminal.Gui.Dialog.LayoutSubviews
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: Terminal.Gui.Dialog.LayoutSubviews
- name: LayoutSubviews
- nameWithType: Dialog.LayoutSubviews
- fullName: Terminal.Gui.Dialog.LayoutSubviews
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- - uid: Terminal.Gui.View.LayoutSubviews
- commentId: M:Terminal.Gui.View.LayoutSubviews
- parent: Terminal.Gui.View
- name: LayoutSubviews()
- nameWithType: View.LayoutSubviews()
- fullName: Terminal.Gui.View.LayoutSubviews()
- spec.csharp:
- - uid: Terminal.Gui.View.LayoutSubviews
- name: LayoutSubviews
- nameWithType: View.LayoutSubviews
- fullName: Terminal.Gui.View.LayoutSubviews
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: Terminal.Gui.View.LayoutSubviews
- name: LayoutSubviews
- nameWithType: View.LayoutSubviews
- fullName: Terminal.Gui.View.LayoutSubviews
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- - uid: Terminal.Gui.Dialog.LayoutSubviews*
- commentId: Overload:Terminal.Gui.Dialog.LayoutSubviews
- name: LayoutSubviews
- nameWithType: Dialog.LayoutSubviews
- fullName: Terminal.Gui.Dialog.LayoutSubviews
- - uid: Terminal.Gui.Dialog.ProcessKey(Terminal.Gui.KeyEvent)
- commentId: M:Terminal.Gui.Dialog.ProcessKey(Terminal.Gui.KeyEvent)
- parent: Terminal.Gui.Dialog
- name: ProcessKey(KeyEvent)
- nameWithType: Dialog.ProcessKey(KeyEvent)
- fullName: Terminal.Gui.Dialog.ProcessKey(Terminal.Gui.KeyEvent)
- spec.csharp:
- - uid: Terminal.Gui.Dialog.ProcessKey(Terminal.Gui.KeyEvent)
- name: ProcessKey
- nameWithType: Dialog.ProcessKey
- fullName: Terminal.Gui.Dialog.ProcessKey
- - name: (
- nameWithType: (
- fullName: (
- - uid: Terminal.Gui.KeyEvent
- name: KeyEvent
- nameWithType: KeyEvent
- fullName: Terminal.Gui.KeyEvent
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: Terminal.Gui.Dialog.ProcessKey(Terminal.Gui.KeyEvent)
- name: ProcessKey
- nameWithType: Dialog.ProcessKey
- fullName: Terminal.Gui.Dialog.ProcessKey
- - name: (
- nameWithType: (
- fullName: (
- - uid: Terminal.Gui.KeyEvent
- name: KeyEvent
- nameWithType: KeyEvent
- fullName: Terminal.Gui.KeyEvent
- - name: )
- nameWithType: )
- fullName: )
- - uid: Terminal.Gui.Toplevel.ProcessKey(Terminal.Gui.KeyEvent)
- commentId: M:Terminal.Gui.Toplevel.ProcessKey(Terminal.Gui.KeyEvent)
- parent: Terminal.Gui.Toplevel
- name: ProcessKey(KeyEvent)
- nameWithType: Toplevel.ProcessKey(KeyEvent)
- fullName: Terminal.Gui.Toplevel.ProcessKey(Terminal.Gui.KeyEvent)
- spec.csharp:
- - uid: Terminal.Gui.Toplevel.ProcessKey(Terminal.Gui.KeyEvent)
- name: ProcessKey
- nameWithType: Toplevel.ProcessKey
- fullName: Terminal.Gui.Toplevel.ProcessKey
- - name: (
- nameWithType: (
- fullName: (
- - uid: Terminal.Gui.KeyEvent
- name: KeyEvent
- nameWithType: KeyEvent
- fullName: Terminal.Gui.KeyEvent
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: Terminal.Gui.Toplevel.ProcessKey(Terminal.Gui.KeyEvent)
- name: ProcessKey
- nameWithType: Toplevel.ProcessKey
- fullName: Terminal.Gui.Toplevel.ProcessKey
- - name: (
- nameWithType: (
- fullName: (
- - uid: Terminal.Gui.KeyEvent
- name: KeyEvent
- nameWithType: KeyEvent
- fullName: Terminal.Gui.KeyEvent
- - name: )
- nameWithType: )
- fullName: )
- - uid: Terminal.Gui.Dialog.ProcessKey*
- commentId: Overload:Terminal.Gui.Dialog.ProcessKey
- name: ProcessKey
- nameWithType: Dialog.ProcessKey
- fullName: Terminal.Gui.Dialog.ProcessKey
- - uid: Terminal.Gui.KeyEvent
- commentId: T:Terminal.Gui.KeyEvent
- parent: Terminal.Gui
- name: KeyEvent
- nameWithType: KeyEvent
- fullName: Terminal.Gui.KeyEvent
- - uid: System.Boolean
- commentId: T:System.Boolean
- parent: System
- isExternal: true
- name: Boolean
- nameWithType: Boolean
- fullName: System.Boolean
- shouldSkipMarkup: true
|