Terminal.Gui.ListView.html 93 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986
  1. <!DOCTYPE html>
  2. <!--[if IE]><![endif]-->
  3. <html>
  4. <head>
  5. <meta charset="utf-8">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  7. <title>Class ListView
  8. </title>
  9. <meta name="viewport" content="width=device-width">
  10. <meta name="title" content="Class ListView
  11. ">
  12. <meta name="generator" content="docfx 2.59.4.0">
  13. <link rel="shortcut icon" href="../../favicon.ico">
  14. <link rel="stylesheet" href="../../styles/docfx.vendor.css">
  15. <link rel="stylesheet" href="../../styles/docfx.css">
  16. <link rel="stylesheet" href="../../styles/main.css">
  17. <link href="https://fonts.googleapis.com/css?family=Source Sans Pro" rel="stylesheet">
  18. <link href="https://fonts.googleapis.com/css?family=Source Code Pro" rel="stylesheet">
  19. <meta property="docfx:navrel" content="../../toc.html">
  20. <meta property="docfx:tocrel" content="toc.html">
  21. <meta property="docfx:rel" content="../../">
  22. </head> <body data-spy="scroll" data-target="#affix" data-offset="120">
  23. <div id="wrapper">
  24. <header>
  25. <nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
  26. <div class="container">
  27. <div class="navbar-header">
  28. <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
  29. <span class="sr-only">Toggle navigation</span>
  30. <span class="icon-bar"></span>
  31. <span class="icon-bar"></span>
  32. <span class="icon-bar"></span>
  33. </button>
  34. <a class="navbar-brand" href="../../index.html">
  35. <img id="logo" class="svg" src="../../images/logo48.png" alt="">
  36. </a>
  37. </div>
  38. <div class="collapse navbar-collapse" id="navbar">
  39. <form class="navbar-form navbar-right" role="search" id="search">
  40. <div class="form-group">
  41. <input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
  42. </div>
  43. </form>
  44. </div>
  45. </div>
  46. </nav>
  47. <div class="subnav navbar navbar-default">
  48. <div class="container hide-when-search" id="breadcrumb">
  49. <ul class="breadcrumb">
  50. <li></li>
  51. </ul>
  52. </div>
  53. </div>
  54. </header>
  55. <div class="container body-content">
  56. <div id="search-results">
  57. <div class="search-list">Search Results for <span></span></div>
  58. <div class="sr-items">
  59. <p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
  60. </div>
  61. <ul id="pagination" data-first="First" data-prev="Previous" data-next="Next" data-last="Last"></ul>
  62. </div>
  63. </div>
  64. <div role="main" class="container body-content hide-when-search">
  65. <div class="sidenav hide-when-search">
  66. <a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
  67. <div class="sidetoggle collapse" id="sidetoggle">
  68. <div id="sidetoc"></div>
  69. </div>
  70. </div>
  71. <div class="article row grid-right">
  72. <div class="col-md-10">
  73. <article class="content wrap" id="_content" data-uid="Terminal.Gui.ListView">
  74. <h1 id="Terminal_Gui_ListView" data-uid="Terminal.Gui.ListView" class="text-break">Class ListView
  75. </h1>
  76. <div class="markdown level0 summary">
  77. ListView <a class="xref" href="Terminal.Gui.View.html">View</a> renders a scrollable list of data where each item can be activated to perform an action.
  78. </div>
  79. <div class="markdown level0 conceptual"></div>
  80. <div class="inheritance">
  81. <h5>Inheritance</h5>
  82. <div class="level0"><span class="xref">System.Object</span></div>
  83. <div class="level1"><a class="xref" href="Terminal.Gui.Responder.html">Responder</a></div>
  84. <div class="level2"><a class="xref" href="Terminal.Gui.View.html">View</a></div>
  85. <div class="level3"><span class="xref">ListView</span></div>
  86. </div>
  87. <div class="implements">
  88. <h5>Implements</h5>
  89. <div><span class="xref">System.IDisposable</span></div>
  90. <div><span class="xref">System.ComponentModel.ISupportInitializeNotification</span></div>
  91. <div><span class="xref">System.ComponentModel.ISupportInitialize</span></div>
  92. </div>
  93. <h5 id="Terminal_Gui_ListView_remarks"><strong>Remarks</strong></h5>
  94. <div class="markdown level0 remarks">
  95. <p>
  96. The <a class="xref" href="Terminal.Gui.ListView.html">ListView</a> displays lists of data and allows the user to scroll through the data.
  97. Items in the can be activated firing an event (with the ENTER key or a mouse double-click).
  98. If the <a class="xref" href="Terminal.Gui.ListView.html#Terminal_Gui_ListView_AllowsMarking">AllowsMarking</a> property is true, elements of the list can be marked by the user.
  99. </p>
  100. <p>
  101. By default <a class="xref" href="Terminal.Gui.ListView.html">ListView</a> uses <span class="xref">System.Object.ToString()</span> to render the items of any
  102. <span class="xref">System.Collections.IList</span> object (e.g. arrays, <span class="xref">System.Collections.Generic.List&lt;T&gt;</span>,
  103. and other collections). Alternatively, an object that implements the <a class="xref" href="Terminal.Gui.IListDataSource.html">IListDataSource</a>
  104. interface can be provided giving full control of what is rendered.
  105. </p>
  106. <p>
  107. <a class="xref" href="Terminal.Gui.ListView.html">ListView</a> can display any object that implements the <span class="xref">System.Collections.IList</span> interface.
  108. <span class="xref">System.String</span> values are converted into <span class="xref">NStack.ustring</span> values before rendering, and other values are
  109. converted into <span class="xref">System.String</span> by calling <span class="xref">System.Object.ToString()</span> and then converting to <span class="xref">NStack.ustring</span> .
  110. </p>
  111. <p>
  112. To change the contents of the ListView, set the <a class="xref" href="Terminal.Gui.ListView.html#Terminal_Gui_ListView_Source">Source</a> property (when
  113. providing custom rendering via <a class="xref" href="Terminal.Gui.IListDataSource.html">IListDataSource</a>) or call <a class="xref" href="Terminal.Gui.ListView.html#Terminal_Gui_ListView_SetSource_System_Collections_IList_">SetSource(IList)</a>
  114. an <span class="xref">System.Collections.IList</span> is being used.
  115. </p>
  116. <p>
  117. When <a class="xref" href="Terminal.Gui.ListView.html#Terminal_Gui_ListView_AllowsMarking">AllowsMarking</a> is set to true the rendering will prefix the rendered items with
  118. [x] or [ ] and bind the SPACE key to toggle the selection. To implement a different
  119. marking style set <a class="xref" href="Terminal.Gui.ListView.html#Terminal_Gui_ListView_AllowsMarking">AllowsMarking</a> to false and implement custom rendering.
  120. </p>
  121. </div>
  122. <div class="inheritedMembers">
  123. <h5>Inherited Members</h5>
  124. <div>
  125. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Added">View.Added</a>
  126. </div>
  127. <div>
  128. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Removed">View.Removed</a>
  129. </div>
  130. <div>
  131. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Enter">View.Enter</a>
  132. </div>
  133. <div>
  134. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Leave">View.Leave</a>
  135. </div>
  136. <div>
  137. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_MouseEnter">View.MouseEnter</a>
  138. </div>
  139. <div>
  140. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_MouseLeave">View.MouseLeave</a>
  141. </div>
  142. <div>
  143. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_MouseClick">View.MouseClick</a>
  144. </div>
  145. <div>
  146. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_CanFocusChanged">View.CanFocusChanged</a>
  147. </div>
  148. <div>
  149. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_EnabledChanged">View.EnabledChanged</a>
  150. </div>
  151. <div>
  152. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_VisibleChanged">View.VisibleChanged</a>
  153. </div>
  154. <div>
  155. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_HotKeyChanged">View.HotKeyChanged</a>
  156. </div>
  157. <div>
  158. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_HotKey">View.HotKey</a>
  159. </div>
  160. <div>
  161. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_HotKeySpecifier">View.HotKeySpecifier</a>
  162. </div>
  163. <div>
  164. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Shortcut">View.Shortcut</a>
  165. </div>
  166. <div>
  167. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_ShortcutTag">View.ShortcutTag</a>
  168. </div>
  169. <div>
  170. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_ShortcutAction">View.ShortcutAction</a>
  171. </div>
  172. <div>
  173. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Data">View.Data</a>
  174. </div>
  175. <div>
  176. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Driver">View.Driver</a>
  177. </div>
  178. <div>
  179. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Subviews">View.Subviews</a>
  180. </div>
  181. <div>
  182. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_TabIndexes">View.TabIndexes</a>
  183. </div>
  184. <div>
  185. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_TabIndex">View.TabIndex</a>
  186. </div>
  187. <div>
  188. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_TabStop">View.TabStop</a>
  189. </div>
  190. <div>
  191. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_CanFocus">View.CanFocus</a>
  192. </div>
  193. <div>
  194. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Id">View.Id</a>
  195. </div>
  196. <div>
  197. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_IsCurrentTop">View.IsCurrentTop</a>
  198. </div>
  199. <div>
  200. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_WantMousePositionReports">View.WantMousePositionReports</a>
  201. </div>
  202. <div>
  203. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_WantContinuousButtonPressed">View.WantContinuousButtonPressed</a>
  204. </div>
  205. <div>
  206. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Frame">View.Frame</a>
  207. </div>
  208. <div>
  209. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_LayoutStyle">View.LayoutStyle</a>
  210. </div>
  211. <div>
  212. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Bounds">View.Bounds</a>
  213. </div>
  214. <div>
  215. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_X">View.X</a>
  216. </div>
  217. <div>
  218. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Y">View.Y</a>
  219. </div>
  220. <div>
  221. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Width">View.Width</a>
  222. </div>
  223. <div>
  224. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Height">View.Height</a>
  225. </div>
  226. <div>
  227. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_ForceValidatePosDim">View.ForceValidatePosDim</a>
  228. </div>
  229. <div>
  230. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_GetMinWidthHeight_Terminal_Gui_Size__">View.GetMinWidthHeight(Size)</a>
  231. </div>
  232. <div>
  233. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_SetMinWidthHeight">View.SetMinWidthHeight()</a>
  234. </div>
  235. <div>
  236. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_TextFormatter">View.TextFormatter</a>
  237. </div>
  238. <div>
  239. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_SuperView">View.SuperView</a>
  240. </div>
  241. <div>
  242. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_UpdateTextFormatterText">View.UpdateTextFormatterText()</a>
  243. </div>
  244. <div>
  245. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_ProcessResizeView">View.ProcessResizeView()</a>
  246. </div>
  247. <div>
  248. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_SetNeedsDisplay">View.SetNeedsDisplay()</a>
  249. </div>
  250. <div>
  251. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_ClearLayoutNeeded">View.ClearLayoutNeeded()</a>
  252. </div>
  253. <div>
  254. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_SetNeedsDisplay_Terminal_Gui_Rect_">View.SetNeedsDisplay(Rect)</a>
  255. </div>
  256. <div>
  257. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_SetChildNeedsDisplay">View.SetChildNeedsDisplay()</a>
  258. </div>
  259. <div>
  260. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Add_Terminal_Gui_View_">View.Add(View)</a>
  261. </div>
  262. <div>
  263. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Add_Terminal_Gui_View___">View.Add(View[])</a>
  264. </div>
  265. <div>
  266. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_RemoveAll">View.RemoveAll()</a>
  267. </div>
  268. <div>
  269. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Remove_Terminal_Gui_View_">View.Remove(View)</a>
  270. </div>
  271. <div>
  272. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_BringSubviewToFront_Terminal_Gui_View_">View.BringSubviewToFront(View)</a>
  273. </div>
  274. <div>
  275. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_SendSubviewToBack_Terminal_Gui_View_">View.SendSubviewToBack(View)</a>
  276. </div>
  277. <div>
  278. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_SendSubviewBackwards_Terminal_Gui_View_">View.SendSubviewBackwards(View)</a>
  279. </div>
  280. <div>
  281. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_BringSubviewForward_Terminal_Gui_View_">View.BringSubviewForward(View)</a>
  282. </div>
  283. <div>
  284. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Clear">View.Clear()</a>
  285. </div>
  286. <div>
  287. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Clear_Terminal_Gui_Rect_">View.Clear(Rect)</a>
  288. </div>
  289. <div>
  290. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_ScreenToView_System_Int32_System_Int32_">View.ScreenToView(Int32, Int32)</a>
  291. </div>
  292. <div>
  293. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_ClipToBounds">View.ClipToBounds()</a>
  294. </div>
  295. <div>
  296. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_SetClip_Terminal_Gui_Rect_">View.SetClip(Rect)</a>
  297. </div>
  298. <div>
  299. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_DrawFrame_Terminal_Gui_Rect_System_Int32_System_Boolean_">View.DrawFrame(Rect, Int32, Boolean)</a>
  300. </div>
  301. <div>
  302. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_DrawHotString_NStack_ustring_Terminal_Gui_Attribute_Terminal_Gui_Attribute_">View.DrawHotString(ustring, Attribute, Attribute)</a>
  303. </div>
  304. <div>
  305. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_DrawHotString_NStack_ustring_System_Boolean_Terminal_Gui_ColorScheme_">View.DrawHotString(ustring, Boolean, ColorScheme)</a>
  306. </div>
  307. <div>
  308. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Move_System_Int32_System_Int32_System_Boolean_">View.Move(Int32, Int32, Boolean)</a>
  309. </div>
  310. <div>
  311. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_HasFocus">View.HasFocus</a>
  312. </div>
  313. <div>
  314. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_OnAdded_Terminal_Gui_View_">View.OnAdded(View)</a>
  315. </div>
  316. <div>
  317. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_OnRemoved_Terminal_Gui_View_">View.OnRemoved(View)</a>
  318. </div>
  319. <div>
  320. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Focused">View.Focused</a>
  321. </div>
  322. <div>
  323. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_MostFocused">View.MostFocused</a>
  324. </div>
  325. <div>
  326. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_ColorScheme">View.ColorScheme</a>
  327. </div>
  328. <div>
  329. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_AddRune_System_Int32_System_Int32_System_Rune_">View.AddRune(Int32, Int32, Rune)</a>
  330. </div>
  331. <div>
  332. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_ClearNeedsDisplay">View.ClearNeedsDisplay()</a>
  333. </div>
  334. <div>
  335. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_DrawContent">View.DrawContent</a>
  336. </div>
  337. <div>
  338. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_OnDrawContent_Terminal_Gui_Rect_">View.OnDrawContent(Rect)</a>
  339. </div>
  340. <div>
  341. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_DrawContentComplete">View.DrawContentComplete</a>
  342. </div>
  343. <div>
  344. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_OnDrawContentComplete_Terminal_Gui_Rect_">View.OnDrawContentComplete(Rect)</a>
  345. </div>
  346. <div>
  347. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_SetFocus">View.SetFocus()</a>
  348. </div>
  349. <div>
  350. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_KeyPress">View.KeyPress</a>
  351. </div>
  352. <div>
  353. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_InvokeKeybindings_Terminal_Gui_KeyEvent_">View.InvokeKeybindings(KeyEvent)</a>
  354. </div>
  355. <div>
  356. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_AddKeyBinding_Terminal_Gui_Key_Terminal_Gui_Command___">View.AddKeyBinding(Key, Command[])</a>
  357. </div>
  358. <div>
  359. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_ReplaceKeyBinding_Terminal_Gui_Key_Terminal_Gui_Key_">View.ReplaceKeyBinding(Key, Key)</a>
  360. </div>
  361. <div>
  362. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_ContainsKeyBinding_Terminal_Gui_Key_">View.ContainsKeyBinding(Key)</a>
  363. </div>
  364. <div>
  365. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_ClearKeybindings">View.ClearKeybindings()</a>
  366. </div>
  367. <div>
  368. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_ClearKeybinding_Terminal_Gui_Key_">View.ClearKeybinding(Key)</a>
  369. </div>
  370. <div>
  371. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_ClearKeybinding_Terminal_Gui_Command___">View.ClearKeybinding(Command[])</a>
  372. </div>
  373. <div>
  374. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_AddCommand_Terminal_Gui_Command_System_Func_System_Nullable_System_Boolean___">View.AddCommand(Command, Func&lt;Nullable&lt;Boolean&gt;&gt;)</a>
  375. </div>
  376. <div>
  377. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_GetSupportedCommands">View.GetSupportedCommands()</a>
  378. </div>
  379. <div>
  380. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_GetKeyFromCommand_Terminal_Gui_Command___">View.GetKeyFromCommand(Command[])</a>
  381. </div>
  382. <div>
  383. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_ProcessHotKey_Terminal_Gui_KeyEvent_">View.ProcessHotKey(KeyEvent)</a>
  384. </div>
  385. <div>
  386. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_ProcessColdKey_Terminal_Gui_KeyEvent_">View.ProcessColdKey(KeyEvent)</a>
  387. </div>
  388. <div>
  389. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_KeyDown">View.KeyDown</a>
  390. </div>
  391. <div>
  392. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_OnKeyDown_Terminal_Gui_KeyEvent_">View.OnKeyDown(KeyEvent)</a>
  393. </div>
  394. <div>
  395. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_KeyUp">View.KeyUp</a>
  396. </div>
  397. <div>
  398. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_OnKeyUp_Terminal_Gui_KeyEvent_">View.OnKeyUp(KeyEvent)</a>
  399. </div>
  400. <div>
  401. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_EnsureFocus">View.EnsureFocus()</a>
  402. </div>
  403. <div>
  404. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_FocusFirst">View.FocusFirst()</a>
  405. </div>
  406. <div>
  407. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_FocusLast">View.FocusLast()</a>
  408. </div>
  409. <div>
  410. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_FocusPrev">View.FocusPrev()</a>
  411. </div>
  412. <div>
  413. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_FocusNext">View.FocusNext()</a>
  414. </div>
  415. <div>
  416. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_LayoutStarted">View.LayoutStarted</a>
  417. </div>
  418. <div>
  419. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_LayoutComplete">View.LayoutComplete</a>
  420. </div>
  421. <div>
  422. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Initialized">View.Initialized</a>
  423. </div>
  424. <div>
  425. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_LayoutSubviews">View.LayoutSubviews()</a>
  426. </div>
  427. <div>
  428. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Text">View.Text</a>
  429. </div>
  430. <div>
  431. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_AutoSize">View.AutoSize</a>
  432. </div>
  433. <div>
  434. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_PreserveTrailingSpaces">View.PreserveTrailingSpaces</a>
  435. </div>
  436. <div>
  437. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_TextAlignment">View.TextAlignment</a>
  438. </div>
  439. <div>
  440. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_VerticalTextAlignment">View.VerticalTextAlignment</a>
  441. </div>
  442. <div>
  443. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_TextDirection">View.TextDirection</a>
  444. </div>
  445. <div>
  446. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_IsInitialized">View.IsInitialized</a>
  447. </div>
  448. <div>
  449. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_IsAdded">View.IsAdded</a>
  450. </div>
  451. <div>
  452. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Enabled">View.Enabled</a>
  453. </div>
  454. <div>
  455. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Visible">View.Visible</a>
  456. </div>
  457. <div>
  458. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Border">View.Border</a>
  459. </div>
  460. <div>
  461. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_ToString">View.ToString()</a>
  462. </div>
  463. <div>
  464. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_GetAutoSize">View.GetAutoSize()</a>
  465. </div>
  466. <div>
  467. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_GetHotKeySpecifierLength_System_Boolean_">View.GetHotKeySpecifierLength(Boolean)</a>
  468. </div>
  469. <div>
  470. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_GetTextFormatterBoundsSize">View.GetTextFormatterBoundsSize()</a>
  471. </div>
  472. <div>
  473. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_GetBoundsTextFormatterSize">View.GetBoundsTextFormatterSize()</a>
  474. </div>
  475. <div>
  476. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_OnMouseEnter_Terminal_Gui_MouseEvent_">View.OnMouseEnter(MouseEvent)</a>
  477. </div>
  478. <div>
  479. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_OnMouseLeave_Terminal_Gui_MouseEvent_">View.OnMouseLeave(MouseEvent)</a>
  480. </div>
  481. <div>
  482. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_OnMouseEvent_Terminal_Gui_MouseEvent_">View.OnMouseEvent(MouseEvent)</a>
  483. </div>
  484. <div>
  485. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_OnMouseClick_Terminal_Gui_View_MouseEventArgs_">View.OnMouseClick(View.MouseEventArgs)</a>
  486. </div>
  487. <div>
  488. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_OnCanFocusChanged">View.OnCanFocusChanged()</a>
  489. </div>
  490. <div>
  491. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_OnEnabledChanged">View.OnEnabledChanged()</a>
  492. </div>
  493. <div>
  494. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_OnVisibleChanged">View.OnVisibleChanged()</a>
  495. </div>
  496. <div>
  497. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Dispose_System_Boolean_">View.Dispose(Boolean)</a>
  498. </div>
  499. <div>
  500. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_BeginInit">View.BeginInit()</a>
  501. </div>
  502. <div>
  503. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_EndInit">View.EndInit()</a>
  504. </div>
  505. <div>
  506. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_SetWidth_System_Int32_System_Int32__">View.SetWidth(Int32, Int32)</a>
  507. </div>
  508. <div>
  509. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_SetHeight_System_Int32_System_Int32__">View.SetHeight(Int32, Int32)</a>
  510. </div>
  511. <div>
  512. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_GetCurrentWidth_System_Int32__">View.GetCurrentWidth(Int32)</a>
  513. </div>
  514. <div>
  515. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_GetCurrentHeight_System_Int32__">View.GetCurrentHeight(Int32)</a>
  516. </div>
  517. <div>
  518. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_GetNormalColor">View.GetNormalColor()</a>
  519. </div>
  520. <div>
  521. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_GetTopSuperView">View.GetTopSuperView()</a>
  522. </div>
  523. <div>
  524. <a class="xref" href="Terminal.Gui.Responder.html#Terminal_Gui_Responder_Dispose">Responder.Dispose()</a>
  525. </div>
  526. <div>
  527. <span class="xref">System.Object.Equals(System.Object)</span>
  528. </div>
  529. <div>
  530. <span class="xref">System.Object.Equals(System.Object, System.Object)</span>
  531. </div>
  532. <div>
  533. <span class="xref">System.Object.GetHashCode()</span>
  534. </div>
  535. <div>
  536. <span class="xref">System.Object.GetType()</span>
  537. </div>
  538. <div>
  539. <span class="xref">System.Object.MemberwiseClone()</span>
  540. </div>
  541. <div>
  542. <span class="xref">System.Object.ReferenceEquals(System.Object, System.Object)</span>
  543. </div>
  544. </div>
  545. <h6><strong>Namespace</strong>: <a class="xref" href="Terminal.Gui.html">Terminal.Gui</a></h6>
  546. <h6><strong>Assembly</strong>: Terminal.Gui.dll</h6>
  547. <h5 id="Terminal_Gui_ListView_syntax">Syntax</h5>
  548. <div class="codewrapper">
  549. <pre><code class="lang-csharp hljs">public class ListView : View, IDisposable, ISupportInitializeNotification, ISupportInitialize</code></pre>
  550. </div>
  551. <h3 id="constructors">Constructors
  552. </h3>
  553. <span class="small pull-right mobile-hide">
  554. <span class="divider">|</span>
  555. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Terminal_Gui_ListView__ctor.md&amp;value=---%0Auid%3A%20Terminal.Gui.ListView.%23ctor%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  556. </span>
  557. <span class="small pull-right mobile-hide">
  558. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/Views/ListView.cs/#L290">View Source</a>
  559. </span>
  560. <a id="Terminal_Gui_ListView__ctor_" data-uid="Terminal.Gui.ListView.#ctor*"></a>
  561. <h4 id="Terminal_Gui_ListView__ctor" data-uid="Terminal.Gui.ListView.#ctor">ListView()</h4>
  562. <div class="markdown level1 summary">
  563. Initializes a new instance of <a class="xref" href="Terminal.Gui.ListView.html">ListView</a>. Set the <a class="xref" href="Terminal.Gui.ListView.html#Terminal_Gui_ListView_Source">Source</a> property to display something.
  564. </div>
  565. <div class="markdown level1 conceptual"></div>
  566. <h5 class="decalaration">Declaration</h5>
  567. <div class="codewrapper">
  568. <pre><code class="lang-csharp hljs">public ListView()</code></pre>
  569. </div>
  570. <span class="small pull-right mobile-hide">
  571. <span class="divider">|</span>
  572. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Terminal_Gui_ListView__ctor_System_Collections_IList_.md&amp;value=---%0Auid%3A%20Terminal.Gui.ListView.%23ctor(System.Collections.IList)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  573. </span>
  574. <span class="small pull-right mobile-hide">
  575. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/Views/ListView.cs/#L271">View Source</a>
  576. </span>
  577. <a id="Terminal_Gui_ListView__ctor_" data-uid="Terminal.Gui.ListView.#ctor*"></a>
  578. <h4 id="Terminal_Gui_ListView__ctor_System_Collections_IList_" data-uid="Terminal.Gui.ListView.#ctor(System.Collections.IList)">ListView(IList)</h4>
  579. <div class="markdown level1 summary">
  580. Initializes a new instance of <a class="xref" href="Terminal.Gui.ListView.html">ListView</a> that will display the contents of the object implementing the <span class="xref">System.Collections.IList</span> interface,
  581. with relative positioning.
  582. </div>
  583. <div class="markdown level1 conceptual"></div>
  584. <h5 class="decalaration">Declaration</h5>
  585. <div class="codewrapper">
  586. <pre><code class="lang-csharp hljs">public ListView(IList source)</code></pre>
  587. </div>
  588. <h5 class="parameters">Parameters</h5>
  589. <table class="table table-bordered table-striped table-condensed">
  590. <thead>
  591. <tr>
  592. <th>Type</th>
  593. <th>Name</th>
  594. <th>Description</th>
  595. </tr>
  596. </thead>
  597. <tbody>
  598. <tr>
  599. <td><span class="xref">System.Collections.IList</span></td>
  600. <td><span class="parametername">source</span></td>
  601. <td>An <span class="xref">System.Collections.IList</span> data source, if the elements are strings or ustrings, the string is rendered, otherwise the ToString() method is invoked on the result.</td>
  602. </tr>
  603. </tbody>
  604. </table>
  605. <span class="small pull-right mobile-hide">
  606. <span class="divider">|</span>
  607. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Terminal_Gui_ListView__ctor_Terminal_Gui_IListDataSource_.md&amp;value=---%0Auid%3A%20Terminal.Gui.ListView.%23ctor(Terminal.Gui.IListDataSource)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  608. </span>
  609. <span class="small pull-right mobile-hide">
  610. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/Views/ListView.cs/#L281">View Source</a>
  611. </span>
  612. <a id="Terminal_Gui_ListView__ctor_" data-uid="Terminal.Gui.ListView.#ctor*"></a>
  613. <h4 id="Terminal_Gui_ListView__ctor_Terminal_Gui_IListDataSource_" data-uid="Terminal.Gui.ListView.#ctor(Terminal.Gui.IListDataSource)">ListView(IListDataSource)</h4>
  614. <div class="markdown level1 summary">
  615. Initializes a new instance of <a class="xref" href="Terminal.Gui.ListView.html">ListView</a> that will display the provided data source, using relative positioning.
  616. </div>
  617. <div class="markdown level1 conceptual"></div>
  618. <h5 class="decalaration">Declaration</h5>
  619. <div class="codewrapper">
  620. <pre><code class="lang-csharp hljs">public ListView(IListDataSource source)</code></pre>
  621. </div>
  622. <h5 class="parameters">Parameters</h5>
  623. <table class="table table-bordered table-striped table-condensed">
  624. <thead>
  625. <tr>
  626. <th>Type</th>
  627. <th>Name</th>
  628. <th>Description</th>
  629. </tr>
  630. </thead>
  631. <tbody>
  632. <tr>
  633. <td><a class="xref" href="Terminal.Gui.IListDataSource.html">IListDataSource</a></td>
  634. <td><span class="parametername">source</span></td>
  635. <td><a class="xref" href="Terminal.Gui.IListDataSource.html">IListDataSource</a> object that provides a mechanism to render the data.
  636. The number of elements on the collection should not change, if you must change, set
  637. the &quot;Source&quot; property to reset the internal settings of the ListView.</td>
  638. </tr>
  639. </tbody>
  640. </table>
  641. <span class="small pull-right mobile-hide">
  642. <span class="divider">|</span>
  643. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Terminal_Gui_ListView__ctor_Terminal_Gui_Rect_System_Collections_IList_.md&amp;value=---%0Auid%3A%20Terminal.Gui.ListView.%23ctor(Terminal.Gui.Rect%2CSystem.Collections.IList)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  644. </span>
  645. <span class="small pull-right mobile-hide">
  646. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/Views/ListView.cs/#L300">View Source</a>
  647. </span>
  648. <a id="Terminal_Gui_ListView__ctor_" data-uid="Terminal.Gui.ListView.#ctor*"></a>
  649. <h4 id="Terminal_Gui_ListView__ctor_Terminal_Gui_Rect_System_Collections_IList_" data-uid="Terminal.Gui.ListView.#ctor(Terminal.Gui.Rect,System.Collections.IList)">ListView(Rect, IList)</h4>
  650. <div class="markdown level1 summary">
  651. Initializes a new instance of <a class="xref" href="Terminal.Gui.ListView.html">ListView</a> that will display the contents of the object implementing the <span class="xref">System.Collections.IList</span> interface with an absolute position.
  652. </div>
  653. <div class="markdown level1 conceptual"></div>
  654. <h5 class="decalaration">Declaration</h5>
  655. <div class="codewrapper">
  656. <pre><code class="lang-csharp hljs">public ListView(Rect rect, IList source)</code></pre>
  657. </div>
  658. <h5 class="parameters">Parameters</h5>
  659. <table class="table table-bordered table-striped table-condensed">
  660. <thead>
  661. <tr>
  662. <th>Type</th>
  663. <th>Name</th>
  664. <th>Description</th>
  665. </tr>
  666. </thead>
  667. <tbody>
  668. <tr>
  669. <td><a class="xref" href="Terminal.Gui.Rect.html">Rect</a></td>
  670. <td><span class="parametername">rect</span></td>
  671. <td>Frame for the listview.</td>
  672. </tr>
  673. <tr>
  674. <td><span class="xref">System.Collections.IList</span></td>
  675. <td><span class="parametername">source</span></td>
  676. <td>An IList data source, if the elements of the IList are strings or ustrings, the string is rendered, otherwise the ToString() method is invoked on the result.</td>
  677. </tr>
  678. </tbody>
  679. </table>
  680. <span class="small pull-right mobile-hide">
  681. <span class="divider">|</span>
  682. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Terminal_Gui_ListView__ctor_Terminal_Gui_Rect_Terminal_Gui_IListDataSource_.md&amp;value=---%0Auid%3A%20Terminal.Gui.ListView.%23ctor(Terminal.Gui.Rect%2CTerminal.Gui.IListDataSource)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  683. </span>
  684. <span class="small pull-right mobile-hide">
  685. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/Views/ListView.cs/#L310">View Source</a>
  686. </span>
  687. <a id="Terminal_Gui_ListView__ctor_" data-uid="Terminal.Gui.ListView.#ctor*"></a>
  688. <h4 id="Terminal_Gui_ListView__ctor_Terminal_Gui_Rect_Terminal_Gui_IListDataSource_" data-uid="Terminal.Gui.ListView.#ctor(Terminal.Gui.Rect,Terminal.Gui.IListDataSource)">ListView(Rect, IListDataSource)</h4>
  689. <div class="markdown level1 summary">
  690. Initializes a new instance of <a class="xref" href="Terminal.Gui.ListView.html">ListView</a> with the provided data source and an absolute position
  691. </div>
  692. <div class="markdown level1 conceptual"></div>
  693. <h5 class="decalaration">Declaration</h5>
  694. <div class="codewrapper">
  695. <pre><code class="lang-csharp hljs">public ListView(Rect rect, IListDataSource source)</code></pre>
  696. </div>
  697. <h5 class="parameters">Parameters</h5>
  698. <table class="table table-bordered table-striped table-condensed">
  699. <thead>
  700. <tr>
  701. <th>Type</th>
  702. <th>Name</th>
  703. <th>Description</th>
  704. </tr>
  705. </thead>
  706. <tbody>
  707. <tr>
  708. <td><a class="xref" href="Terminal.Gui.Rect.html">Rect</a></td>
  709. <td><span class="parametername">rect</span></td>
  710. <td>Frame for the listview.</td>
  711. </tr>
  712. <tr>
  713. <td><a class="xref" href="Terminal.Gui.IListDataSource.html">IListDataSource</a></td>
  714. <td><span class="parametername">source</span></td>
  715. <td>IListDataSource object that provides a mechanism to render the data. The number of elements on the collection should not change, if you must change, set the &quot;Source&quot; property to reset the internal settings of the ListView.</td>
  716. </tr>
  717. </tbody>
  718. </table>
  719. <h3 id="properties">Properties
  720. </h3>
  721. <span class="small pull-right mobile-hide">
  722. <span class="divider">|</span>
  723. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Terminal_Gui_ListView_AllowsMarking.md&amp;value=---%0Auid%3A%20Terminal.Gui.ListView.AllowsMarking%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  724. </span>
  725. <span class="small pull-right mobile-hide">
  726. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/Views/ListView.cs/#L178">View Source</a>
  727. </span>
  728. <a id="Terminal_Gui_ListView_AllowsMarking_" data-uid="Terminal.Gui.ListView.AllowsMarking*"></a>
  729. <h4 id="Terminal_Gui_ListView_AllowsMarking" data-uid="Terminal.Gui.ListView.AllowsMarking">AllowsMarking</h4>
  730. <div class="markdown level1 summary">
  731. Gets or sets whether this <a class="xref" href="Terminal.Gui.ListView.html">ListView</a> allows items to be marked.
  732. </div>
  733. <div class="markdown level1 conceptual"></div>
  734. <h5 class="decalaration">Declaration</h5>
  735. <div class="codewrapper">
  736. <pre><code class="lang-csharp hljs">public bool AllowsMarking { get; set; }</code></pre>
  737. </div>
  738. <h5 class="propertyValue">Property Value</h5>
  739. <table class="table table-bordered table-striped table-condensed">
  740. <thead>
  741. <tr>
  742. <th>Type</th>
  743. <th>Description</th>
  744. </tr>
  745. </thead>
  746. <tbody>
  747. <tr>
  748. <td><span class="xref">System.Boolean</span></td>
  749. <td><code>true</code> if allows marking elements of the list; otherwise, <code>false</code>.
  750. </td>
  751. </tr>
  752. </tbody>
  753. </table>
  754. <span class="small pull-right mobile-hide">
  755. <span class="divider">|</span>
  756. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Terminal_Gui_ListView_AllowsMultipleSelection.md&amp;value=---%0Auid%3A%20Terminal.Gui.ListView.AllowsMultipleSelection%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  757. </span>
  758. <span class="small pull-right mobile-hide">
  759. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/Views/ListView.cs/#L189">View Source</a>
  760. </span>
  761. <a id="Terminal_Gui_ListView_AllowsMultipleSelection_" data-uid="Terminal.Gui.ListView.AllowsMultipleSelection*"></a>
  762. <h4 id="Terminal_Gui_ListView_AllowsMultipleSelection" data-uid="Terminal.Gui.ListView.AllowsMultipleSelection">AllowsMultipleSelection</h4>
  763. <div class="markdown level1 summary">
  764. If set to true allows more than one item to be selected. If false only allow one item selected.
  765. </div>
  766. <div class="markdown level1 conceptual"></div>
  767. <h5 class="decalaration">Declaration</h5>
  768. <div class="codewrapper">
  769. <pre><code class="lang-csharp hljs">public bool AllowsMultipleSelection { get; set; }</code></pre>
  770. </div>
  771. <h5 class="propertyValue">Property Value</h5>
  772. <table class="table table-bordered table-striped table-condensed">
  773. <thead>
  774. <tr>
  775. <th>Type</th>
  776. <th>Description</th>
  777. </tr>
  778. </thead>
  779. <tbody>
  780. <tr>
  781. <td><span class="xref">System.Boolean</span></td>
  782. <td></td>
  783. </tr>
  784. </tbody>
  785. </table>
  786. <span class="small pull-right mobile-hide">
  787. <span class="divider">|</span>
  788. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Terminal_Gui_ListView_LeftItem.md&amp;value=---%0Auid%3A%20Terminal.Gui.ListView.LeftItem%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  789. </span>
  790. <span class="small pull-right mobile-hide">
  791. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/Views/ListView.cs/#L225">View Source</a>
  792. </span>
  793. <a id="Terminal_Gui_ListView_LeftItem_" data-uid="Terminal.Gui.ListView.LeftItem*"></a>
  794. <h4 id="Terminal_Gui_ListView_LeftItem" data-uid="Terminal.Gui.ListView.LeftItem">LeftItem</h4>
  795. <div class="markdown level1 summary">
  796. Gets or sets the left column where the item start to be displayed at on the <a class="xref" href="Terminal.Gui.ListView.html">ListView</a>.
  797. </div>
  798. <div class="markdown level1 conceptual"></div>
  799. <h5 class="decalaration">Declaration</h5>
  800. <div class="codewrapper">
  801. <pre><code class="lang-csharp hljs">public int LeftItem { get; set; }</code></pre>
  802. </div>
  803. <h5 class="propertyValue">Property Value</h5>
  804. <table class="table table-bordered table-striped table-condensed">
  805. <thead>
  806. <tr>
  807. <th>Type</th>
  808. <th>Description</th>
  809. </tr>
  810. </thead>
  811. <tbody>
  812. <tr>
  813. <td><span class="xref">System.Int32</span></td>
  814. <td>The left position.</td>
  815. </tr>
  816. </tbody>
  817. </table>
  818. <span class="small pull-right mobile-hide">
  819. <span class="divider">|</span>
  820. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Terminal_Gui_ListView_Maxlength.md&amp;value=---%0Auid%3A%20Terminal.Gui.ListView.Maxlength%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  821. </span>
  822. <span class="small pull-right mobile-hide">
  823. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/Views/ListView.cs/#L241">View Source</a>
  824. </span>
  825. <a id="Terminal_Gui_ListView_Maxlength_" data-uid="Terminal.Gui.ListView.Maxlength*"></a>
  826. <h4 id="Terminal_Gui_ListView_Maxlength" data-uid="Terminal.Gui.ListView.Maxlength">Maxlength</h4>
  827. <div class="markdown level1 summary">
  828. Gets the widest item.
  829. </div>
  830. <div class="markdown level1 conceptual"></div>
  831. <h5 class="decalaration">Declaration</h5>
  832. <div class="codewrapper">
  833. <pre><code class="lang-csharp hljs">public int Maxlength { get; }</code></pre>
  834. </div>
  835. <h5 class="propertyValue">Property Value</h5>
  836. <table class="table table-bordered table-striped table-condensed">
  837. <thead>
  838. <tr>
  839. <th>Type</th>
  840. <th>Description</th>
  841. </tr>
  842. </thead>
  843. <tbody>
  844. <tr>
  845. <td><span class="xref">System.Int32</span></td>
  846. <td></td>
  847. </tr>
  848. </tbody>
  849. </table>
  850. <span class="small pull-right mobile-hide">
  851. <span class="divider">|</span>
  852. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Terminal_Gui_ListView_SelectedItem.md&amp;value=---%0Auid%3A%20Terminal.Gui.ListView.SelectedItem%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  853. </span>
  854. <span class="small pull-right mobile-hide">
  855. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/Views/ListView.cs/#L247">View Source</a>
  856. </span>
  857. <a id="Terminal_Gui_ListView_SelectedItem_" data-uid="Terminal.Gui.ListView.SelectedItem*"></a>
  858. <h4 id="Terminal_Gui_ListView_SelectedItem" data-uid="Terminal.Gui.ListView.SelectedItem">SelectedItem</h4>
  859. <div class="markdown level1 summary">
  860. Gets or sets the index of the currently selected item.
  861. </div>
  862. <div class="markdown level1 conceptual"></div>
  863. <h5 class="decalaration">Declaration</h5>
  864. <div class="codewrapper">
  865. <pre><code class="lang-csharp hljs">public int SelectedItem { get; set; }</code></pre>
  866. </div>
  867. <h5 class="propertyValue">Property Value</h5>
  868. <table class="table table-bordered table-striped table-condensed">
  869. <thead>
  870. <tr>
  871. <th>Type</th>
  872. <th>Description</th>
  873. </tr>
  874. </thead>
  875. <tbody>
  876. <tr>
  877. <td><span class="xref">System.Int32</span></td>
  878. <td>The selected item.</td>
  879. </tr>
  880. </tbody>
  881. </table>
  882. <span class="small pull-right mobile-hide">
  883. <span class="divider">|</span>
  884. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Terminal_Gui_ListView_Source.md&amp;value=---%0Auid%3A%20Terminal.Gui.ListView.Source%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  885. </span>
  886. <span class="small pull-right mobile-hide">
  887. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/Views/ListView.cs/#L123">View Source</a>
  888. </span>
  889. <a id="Terminal_Gui_ListView_Source_" data-uid="Terminal.Gui.ListView.Source*"></a>
  890. <h4 id="Terminal_Gui_ListView_Source" data-uid="Terminal.Gui.ListView.Source">Source</h4>
  891. <div class="markdown level1 summary">
  892. Gets or sets the <a class="xref" href="Terminal.Gui.IListDataSource.html">IListDataSource</a> backing this <a class="xref" href="Terminal.Gui.ListView.html">ListView</a>, enabling custom rendering.
  893. </div>
  894. <div class="markdown level1 conceptual"></div>
  895. <h5 class="decalaration">Declaration</h5>
  896. <div class="codewrapper">
  897. <pre><code class="lang-csharp hljs">public IListDataSource Source { get; set; }</code></pre>
  898. </div>
  899. <h5 class="propertyValue">Property Value</h5>
  900. <table class="table table-bordered table-striped table-condensed">
  901. <thead>
  902. <tr>
  903. <th>Type</th>
  904. <th>Description</th>
  905. </tr>
  906. </thead>
  907. <tbody>
  908. <tr>
  909. <td><a class="xref" href="Terminal.Gui.IListDataSource.html">IListDataSource</a></td>
  910. <td>The source.</td>
  911. </tr>
  912. </tbody>
  913. </table>
  914. <span class="small pull-right mobile-hide">
  915. <span class="divider">|</span>
  916. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Terminal_Gui_ListView_TopItem.md&amp;value=---%0Auid%3A%20Terminal.Gui.ListView.TopItem%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  917. </span>
  918. <span class="small pull-right mobile-hide">
  919. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/Views/ListView.cs/#L208">View Source</a>
  920. </span>
  921. <a id="Terminal_Gui_ListView_TopItem_" data-uid="Terminal.Gui.ListView.TopItem*"></a>
  922. <h4 id="Terminal_Gui_ListView_TopItem" data-uid="Terminal.Gui.ListView.TopItem">TopItem</h4>
  923. <div class="markdown level1 summary">
  924. Gets or sets the item that is displayed at the top of the <a class="xref" href="Terminal.Gui.ListView.html">ListView</a>.
  925. </div>
  926. <div class="markdown level1 conceptual"></div>
  927. <h5 class="decalaration">Declaration</h5>
  928. <div class="codewrapper">
  929. <pre><code class="lang-csharp hljs">public int TopItem { get; set; }</code></pre>
  930. </div>
  931. <h5 class="propertyValue">Property Value</h5>
  932. <table class="table table-bordered table-striped table-condensed">
  933. <thead>
  934. <tr>
  935. <th>Type</th>
  936. <th>Description</th>
  937. </tr>
  938. </thead>
  939. <tbody>
  940. <tr>
  941. <td><span class="xref">System.Int32</span></td>
  942. <td>The top item.</td>
  943. </tr>
  944. </tbody>
  945. </table>
  946. <h3 id="methods">Methods
  947. </h3>
  948. <span class="small pull-right mobile-hide">
  949. <span class="divider">|</span>
  950. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Terminal_Gui_ListView_AllowsAll.md&amp;value=---%0Auid%3A%20Terminal.Gui.ListView.AllowsAll%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  951. </span>
  952. <span class="small pull-right mobile-hide">
  953. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/Views/ListView.cs/#L429">View Source</a>
  954. </span>
  955. <a id="Terminal_Gui_ListView_AllowsAll_" data-uid="Terminal.Gui.ListView.AllowsAll*"></a>
  956. <h4 id="Terminal_Gui_ListView_AllowsAll" data-uid="Terminal.Gui.ListView.AllowsAll">AllowsAll()</h4>
  957. <div class="markdown level1 summary">
  958. Prevents marking if it&apos;s not allowed mark and if it&apos;s not allows multiple selection.
  959. </div>
  960. <div class="markdown level1 conceptual"></div>
  961. <h5 class="decalaration">Declaration</h5>
  962. <div class="codewrapper">
  963. <pre><code class="lang-csharp hljs">public virtual bool AllowsAll()</code></pre>
  964. </div>
  965. <h5 class="returns">Returns</h5>
  966. <table class="table table-bordered table-striped table-condensed">
  967. <thead>
  968. <tr>
  969. <th>Type</th>
  970. <th>Description</th>
  971. </tr>
  972. </thead>
  973. <tbody>
  974. <tr>
  975. <td><span class="xref">System.Boolean</span></td>
  976. <td></td>
  977. </tr>
  978. </tbody>
  979. </table>
  980. <span class="small pull-right mobile-hide">
  981. <span class="divider">|</span>
  982. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Terminal_Gui_ListView_MarkUnmarkRow.md&amp;value=---%0Auid%3A%20Terminal.Gui.ListView.MarkUnmarkRow%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  983. </span>
  984. <span class="small pull-right mobile-hide">
  985. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/Views/ListView.cs/#L448">View Source</a>
  986. </span>
  987. <a id="Terminal_Gui_ListView_MarkUnmarkRow_" data-uid="Terminal.Gui.ListView.MarkUnmarkRow*"></a>
  988. <h4 id="Terminal_Gui_ListView_MarkUnmarkRow" data-uid="Terminal.Gui.ListView.MarkUnmarkRow">MarkUnmarkRow()</h4>
  989. <div class="markdown level1 summary">
  990. Marks an unmarked row.
  991. </div>
  992. <div class="markdown level1 conceptual"></div>
  993. <h5 class="decalaration">Declaration</h5>
  994. <div class="codewrapper">
  995. <pre><code class="lang-csharp hljs">public virtual bool MarkUnmarkRow()</code></pre>
  996. </div>
  997. <h5 class="returns">Returns</h5>
  998. <table class="table table-bordered table-striped table-condensed">
  999. <thead>
  1000. <tr>
  1001. <th>Type</th>
  1002. <th>Description</th>
  1003. </tr>
  1004. </thead>
  1005. <tbody>
  1006. <tr>
  1007. <td><span class="xref">System.Boolean</span></td>
  1008. <td></td>
  1009. </tr>
  1010. </tbody>
  1011. </table>
  1012. <span class="small pull-right mobile-hide">
  1013. <span class="divider">|</span>
  1014. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Terminal_Gui_ListView_MouseEvent_Terminal_Gui_MouseEvent_.md&amp;value=---%0Auid%3A%20Terminal.Gui.ListView.MouseEvent(Terminal.Gui.MouseEvent)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1015. </span>
  1016. <span class="small pull-right mobile-hide">
  1017. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/Views/ListView.cs/#L744">View Source</a>
  1018. </span>
  1019. <a id="Terminal_Gui_ListView_MouseEvent_" data-uid="Terminal.Gui.ListView.MouseEvent*"></a>
  1020. <h4 id="Terminal_Gui_ListView_MouseEvent_Terminal_Gui_MouseEvent_" data-uid="Terminal.Gui.ListView.MouseEvent(Terminal.Gui.MouseEvent)">MouseEvent(MouseEvent)</h4>
  1021. <div class="markdown level1 summary"></div>
  1022. <div class="markdown level1 conceptual"></div>
  1023. <h5 class="decalaration">Declaration</h5>
  1024. <div class="codewrapper">
  1025. <pre><code class="lang-csharp hljs">public override bool MouseEvent(MouseEvent me)</code></pre>
  1026. </div>
  1027. <h5 class="parameters">Parameters</h5>
  1028. <table class="table table-bordered table-striped table-condensed">
  1029. <thead>
  1030. <tr>
  1031. <th>Type</th>
  1032. <th>Name</th>
  1033. <th>Description</th>
  1034. </tr>
  1035. </thead>
  1036. <tbody>
  1037. <tr>
  1038. <td><a class="xref" href="Terminal.Gui.MouseEvent.html">MouseEvent</a></td>
  1039. <td><span class="parametername">me</span></td>
  1040. <td></td>
  1041. </tr>
  1042. </tbody>
  1043. </table>
  1044. <h5 class="returns">Returns</h5>
  1045. <table class="table table-bordered table-striped table-condensed">
  1046. <thead>
  1047. <tr>
  1048. <th>Type</th>
  1049. <th>Description</th>
  1050. </tr>
  1051. </thead>
  1052. <tbody>
  1053. <tr>
  1054. <td><span class="xref">System.Boolean</span></td>
  1055. <td></td>
  1056. </tr>
  1057. </tbody>
  1058. </table>
  1059. <h5 class="overrides">Overrides</h5>
  1060. <div><a class="xref" href="Terminal.Gui.Responder.html#Terminal_Gui_Responder_MouseEvent_Terminal_Gui_MouseEvent_">Responder.MouseEvent(MouseEvent)</a></div>
  1061. <span class="small pull-right mobile-hide">
  1062. <span class="divider">|</span>
  1063. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Terminal_Gui_ListView_MoveDown.md&amp;value=---%0Auid%3A%20Terminal.Gui.ListView.MoveDown%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1064. </span>
  1065. <span class="small pull-right mobile-hide">
  1066. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/Views/ListView.cs/#L504">View Source</a>
  1067. </span>
  1068. <a id="Terminal_Gui_ListView_MoveDown_" data-uid="Terminal.Gui.ListView.MoveDown*"></a>
  1069. <h4 id="Terminal_Gui_ListView_MoveDown" data-uid="Terminal.Gui.ListView.MoveDown">MoveDown()</h4>
  1070. <div class="markdown level1 summary">
  1071. Moves the selected item index to the next row.
  1072. </div>
  1073. <div class="markdown level1 conceptual"></div>
  1074. <h5 class="decalaration">Declaration</h5>
  1075. <div class="codewrapper">
  1076. <pre><code class="lang-csharp hljs">public virtual bool MoveDown()</code></pre>
  1077. </div>
  1078. <h5 class="returns">Returns</h5>
  1079. <table class="table table-bordered table-striped table-condensed">
  1080. <thead>
  1081. <tr>
  1082. <th>Type</th>
  1083. <th>Description</th>
  1084. </tr>
  1085. </thead>
  1086. <tbody>
  1087. <tr>
  1088. <td><span class="xref">System.Boolean</span></td>
  1089. <td></td>
  1090. </tr>
  1091. </tbody>
  1092. </table>
  1093. <span class="small pull-right mobile-hide">
  1094. <span class="divider">|</span>
  1095. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Terminal_Gui_ListView_MoveEnd.md&amp;value=---%0Auid%3A%20Terminal.Gui.ListView.MoveEnd%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1096. </span>
  1097. <span class="small pull-right mobile-hide">
  1098. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/Views/ListView.cs/#L580">View Source</a>
  1099. </span>
  1100. <a id="Terminal_Gui_ListView_MoveEnd_" data-uid="Terminal.Gui.ListView.MoveEnd*"></a>
  1101. <h4 id="Terminal_Gui_ListView_MoveEnd" data-uid="Terminal.Gui.ListView.MoveEnd">MoveEnd()</h4>
  1102. <div class="markdown level1 summary">
  1103. Moves the selected item index to the last row.
  1104. </div>
  1105. <div class="markdown level1 conceptual"></div>
  1106. <h5 class="decalaration">Declaration</h5>
  1107. <div class="codewrapper">
  1108. <pre><code class="lang-csharp hljs">public virtual bool MoveEnd()</code></pre>
  1109. </div>
  1110. <h5 class="returns">Returns</h5>
  1111. <table class="table table-bordered table-striped table-condensed">
  1112. <thead>
  1113. <tr>
  1114. <th>Type</th>
  1115. <th>Description</th>
  1116. </tr>
  1117. </thead>
  1118. <tbody>
  1119. <tr>
  1120. <td><span class="xref">System.Boolean</span></td>
  1121. <td></td>
  1122. </tr>
  1123. </tbody>
  1124. </table>
  1125. <span class="small pull-right mobile-hide">
  1126. <span class="divider">|</span>
  1127. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Terminal_Gui_ListView_MoveHome.md&amp;value=---%0Auid%3A%20Terminal.Gui.ListView.MoveHome%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1128. </span>
  1129. <span class="small pull-right mobile-hide">
  1130. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/Views/ListView.cs/#L598">View Source</a>
  1131. </span>
  1132. <a id="Terminal_Gui_ListView_MoveHome_" data-uid="Terminal.Gui.ListView.MoveHome*"></a>
  1133. <h4 id="Terminal_Gui_ListView_MoveHome" data-uid="Terminal.Gui.ListView.MoveHome">MoveHome()</h4>
  1134. <div class="markdown level1 summary">
  1135. Moves the selected item index to the first row.
  1136. </div>
  1137. <div class="markdown level1 conceptual"></div>
  1138. <h5 class="decalaration">Declaration</h5>
  1139. <div class="codewrapper">
  1140. <pre><code class="lang-csharp hljs">public virtual bool MoveHome()</code></pre>
  1141. </div>
  1142. <h5 class="returns">Returns</h5>
  1143. <table class="table table-bordered table-striped table-condensed">
  1144. <thead>
  1145. <tr>
  1146. <th>Type</th>
  1147. <th>Description</th>
  1148. </tr>
  1149. </thead>
  1150. <tbody>
  1151. <tr>
  1152. <td><span class="xref">System.Boolean</span></td>
  1153. <td></td>
  1154. </tr>
  1155. </tbody>
  1156. </table>
  1157. <span class="small pull-right mobile-hide">
  1158. <span class="divider">|</span>
  1159. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Terminal_Gui_ListView_MovePageDown.md&amp;value=---%0Auid%3A%20Terminal.Gui.ListView.MovePageDown%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1160. </span>
  1161. <span class="small pull-right mobile-hide">
  1162. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/Views/ListView.cs/#L482">View Source</a>
  1163. </span>
  1164. <a id="Terminal_Gui_ListView_MovePageDown_" data-uid="Terminal.Gui.ListView.MovePageDown*"></a>
  1165. <h4 id="Terminal_Gui_ListView_MovePageDown" data-uid="Terminal.Gui.ListView.MovePageDown">MovePageDown()</h4>
  1166. <div class="markdown level1 summary">
  1167. Moves the selected item index to the previous page.
  1168. </div>
  1169. <div class="markdown level1 conceptual"></div>
  1170. <h5 class="decalaration">Declaration</h5>
  1171. <div class="codewrapper">
  1172. <pre><code class="lang-csharp hljs">public virtual bool MovePageDown()</code></pre>
  1173. </div>
  1174. <h5 class="returns">Returns</h5>
  1175. <table class="table table-bordered table-striped table-condensed">
  1176. <thead>
  1177. <tr>
  1178. <th>Type</th>
  1179. <th>Description</th>
  1180. </tr>
  1181. </thead>
  1182. <tbody>
  1183. <tr>
  1184. <td><span class="xref">System.Boolean</span></td>
  1185. <td></td>
  1186. </tr>
  1187. </tbody>
  1188. </table>
  1189. <span class="small pull-right mobile-hide">
  1190. <span class="divider">|</span>
  1191. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Terminal_Gui_ListView_MovePageUp.md&amp;value=---%0Auid%3A%20Terminal.Gui.ListView.MovePageUp%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1192. </span>
  1193. <span class="small pull-right mobile-hide">
  1194. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/Views/ListView.cs/#L463">View Source</a>
  1195. </span>
  1196. <a id="Terminal_Gui_ListView_MovePageUp_" data-uid="Terminal.Gui.ListView.MovePageUp*"></a>
  1197. <h4 id="Terminal_Gui_ListView_MovePageUp" data-uid="Terminal.Gui.ListView.MovePageUp">MovePageUp()</h4>
  1198. <div class="markdown level1 summary">
  1199. Moves the selected item index to the next page.
  1200. </div>
  1201. <div class="markdown level1 conceptual"></div>
  1202. <h5 class="decalaration">Declaration</h5>
  1203. <div class="codewrapper">
  1204. <pre><code class="lang-csharp hljs">public virtual bool MovePageUp()</code></pre>
  1205. </div>
  1206. <h5 class="returns">Returns</h5>
  1207. <table class="table table-bordered table-striped table-condensed">
  1208. <thead>
  1209. <tr>
  1210. <th>Type</th>
  1211. <th>Description</th>
  1212. </tr>
  1213. </thead>
  1214. <tbody>
  1215. <tr>
  1216. <td><span class="xref">System.Boolean</span></td>
  1217. <td></td>
  1218. </tr>
  1219. </tbody>
  1220. </table>
  1221. <span class="small pull-right mobile-hide">
  1222. <span class="divider">|</span>
  1223. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Terminal_Gui_ListView_MoveUp.md&amp;value=---%0Auid%3A%20Terminal.Gui.ListView.MoveUp%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1224. </span>
  1225. <span class="small pull-right mobile-hide">
  1226. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/Views/ListView.cs/#L544">View Source</a>
  1227. </span>
  1228. <a id="Terminal_Gui_ListView_MoveUp_" data-uid="Terminal.Gui.ListView.MoveUp*"></a>
  1229. <h4 id="Terminal_Gui_ListView_MoveUp" data-uid="Terminal.Gui.ListView.MoveUp">MoveUp()</h4>
  1230. <div class="markdown level1 summary">
  1231. Moves the selected item index to the previous row.
  1232. </div>
  1233. <div class="markdown level1 conceptual"></div>
  1234. <h5 class="decalaration">Declaration</h5>
  1235. <div class="codewrapper">
  1236. <pre><code class="lang-csharp hljs">public virtual bool MoveUp()</code></pre>
  1237. </div>
  1238. <h5 class="returns">Returns</h5>
  1239. <table class="table table-bordered table-striped table-condensed">
  1240. <thead>
  1241. <tr>
  1242. <th>Type</th>
  1243. <th>Description</th>
  1244. </tr>
  1245. </thead>
  1246. <tbody>
  1247. <tr>
  1248. <td><span class="xref">System.Boolean</span></td>
  1249. <td></td>
  1250. </tr>
  1251. </tbody>
  1252. </table>
  1253. <span class="small pull-right mobile-hide">
  1254. <span class="divider">|</span>
  1255. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Terminal_Gui_ListView_OnEnter_Terminal_Gui_View_.md&amp;value=---%0Auid%3A%20Terminal.Gui.ListView.OnEnter(Terminal.Gui.View)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1256. </span>
  1257. <span class="small pull-right mobile-hide">
  1258. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/Views/ListView.cs/#L702">View Source</a>
  1259. </span>
  1260. <a id="Terminal_Gui_ListView_OnEnter_" data-uid="Terminal.Gui.ListView.OnEnter*"></a>
  1261. <h4 id="Terminal_Gui_ListView_OnEnter_Terminal_Gui_View_" data-uid="Terminal.Gui.ListView.OnEnter(Terminal.Gui.View)">OnEnter(View)</h4>
  1262. <div class="markdown level1 summary"></div>
  1263. <div class="markdown level1 conceptual"></div>
  1264. <h5 class="decalaration">Declaration</h5>
  1265. <div class="codewrapper">
  1266. <pre><code class="lang-csharp hljs">public override bool OnEnter(View view)</code></pre>
  1267. </div>
  1268. <h5 class="parameters">Parameters</h5>
  1269. <table class="table table-bordered table-striped table-condensed">
  1270. <thead>
  1271. <tr>
  1272. <th>Type</th>
  1273. <th>Name</th>
  1274. <th>Description</th>
  1275. </tr>
  1276. </thead>
  1277. <tbody>
  1278. <tr>
  1279. <td><a class="xref" href="Terminal.Gui.View.html">View</a></td>
  1280. <td><span class="parametername">view</span></td>
  1281. <td></td>
  1282. </tr>
  1283. </tbody>
  1284. </table>
  1285. <h5 class="returns">Returns</h5>
  1286. <table class="table table-bordered table-striped table-condensed">
  1287. <thead>
  1288. <tr>
  1289. <th>Type</th>
  1290. <th>Description</th>
  1291. </tr>
  1292. </thead>
  1293. <tbody>
  1294. <tr>
  1295. <td><span class="xref">System.Boolean</span></td>
  1296. <td></td>
  1297. </tr>
  1298. </tbody>
  1299. </table>
  1300. <h5 class="overrides">Overrides</h5>
  1301. <div><a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_OnEnter_Terminal_Gui_View_">View.OnEnter(View)</a></div>
  1302. <span class="small pull-right mobile-hide">
  1303. <span class="divider">|</span>
  1304. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Terminal_Gui_ListView_OnLeave_Terminal_Gui_View_.md&amp;value=---%0Auid%3A%20Terminal.Gui.ListView.OnLeave(Terminal.Gui.View)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1305. </span>
  1306. <span class="small pull-right mobile-hide">
  1307. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/Views/ListView.cs/#L715">View Source</a>
  1308. </span>
  1309. <a id="Terminal_Gui_ListView_OnLeave_" data-uid="Terminal.Gui.ListView.OnLeave*"></a>
  1310. <h4 id="Terminal_Gui_ListView_OnLeave_Terminal_Gui_View_" data-uid="Terminal.Gui.ListView.OnLeave(Terminal.Gui.View)">OnLeave(View)</h4>
  1311. <div class="markdown level1 summary"></div>
  1312. <div class="markdown level1 conceptual"></div>
  1313. <h5 class="decalaration">Declaration</h5>
  1314. <div class="codewrapper">
  1315. <pre><code class="lang-csharp hljs">public override bool OnLeave(View view)</code></pre>
  1316. </div>
  1317. <h5 class="parameters">Parameters</h5>
  1318. <table class="table table-bordered table-striped table-condensed">
  1319. <thead>
  1320. <tr>
  1321. <th>Type</th>
  1322. <th>Name</th>
  1323. <th>Description</th>
  1324. </tr>
  1325. </thead>
  1326. <tbody>
  1327. <tr>
  1328. <td><a class="xref" href="Terminal.Gui.View.html">View</a></td>
  1329. <td><span class="parametername">view</span></td>
  1330. <td></td>
  1331. </tr>
  1332. </tbody>
  1333. </table>
  1334. <h5 class="returns">Returns</h5>
  1335. <table class="table table-bordered table-striped table-condensed">
  1336. <thead>
  1337. <tr>
  1338. <th>Type</th>
  1339. <th>Description</th>
  1340. </tr>
  1341. </thead>
  1342. <tbody>
  1343. <tr>
  1344. <td><span class="xref">System.Boolean</span></td>
  1345. <td></td>
  1346. </tr>
  1347. </tbody>
  1348. </table>
  1349. <h5 class="overrides">Overrides</h5>
  1350. <div><a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_OnLeave_Terminal_Gui_View_">View.OnLeave(View)</a></div>
  1351. <span class="small pull-right mobile-hide">
  1352. <span class="divider">|</span>
  1353. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Terminal_Gui_ListView_OnOpenSelectedItem.md&amp;value=---%0Auid%3A%20Terminal.Gui.ListView.OnOpenSelectedItem%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1354. </span>
  1355. <span class="small pull-right mobile-hide">
  1356. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/Views/ListView.cs/#L679">View Source</a>
  1357. </span>
  1358. <a id="Terminal_Gui_ListView_OnOpenSelectedItem_" data-uid="Terminal.Gui.ListView.OnOpenSelectedItem*"></a>
  1359. <h4 id="Terminal_Gui_ListView_OnOpenSelectedItem" data-uid="Terminal.Gui.ListView.OnOpenSelectedItem">OnOpenSelectedItem()</h4>
  1360. <div class="markdown level1 summary">
  1361. Invokes the OnOpenSelectedItem event if it is defined.
  1362. </div>
  1363. <div class="markdown level1 conceptual"></div>
  1364. <h5 class="decalaration">Declaration</h5>
  1365. <div class="codewrapper">
  1366. <pre><code class="lang-csharp hljs">public virtual bool OnOpenSelectedItem()</code></pre>
  1367. </div>
  1368. <h5 class="returns">Returns</h5>
  1369. <table class="table table-bordered table-striped table-condensed">
  1370. <thead>
  1371. <tr>
  1372. <th>Type</th>
  1373. <th>Description</th>
  1374. </tr>
  1375. </thead>
  1376. <tbody>
  1377. <tr>
  1378. <td><span class="xref">System.Boolean</span></td>
  1379. <td></td>
  1380. </tr>
  1381. </tbody>
  1382. </table>
  1383. <span class="small pull-right mobile-hide">
  1384. <span class="divider">|</span>
  1385. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Terminal_Gui_ListView_OnRowRender_Terminal_Gui_ListViewRowEventArgs_.md&amp;value=---%0Auid%3A%20Terminal.Gui.ListView.OnRowRender(Terminal.Gui.ListViewRowEventArgs)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1386. </span>
  1387. <span class="small pull-right mobile-hide">
  1388. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/Views/ListView.cs/#L696">View Source</a>
  1389. </span>
  1390. <a id="Terminal_Gui_ListView_OnRowRender_" data-uid="Terminal.Gui.ListView.OnRowRender*"></a>
  1391. <h4 id="Terminal_Gui_ListView_OnRowRender_Terminal_Gui_ListViewRowEventArgs_" data-uid="Terminal.Gui.ListView.OnRowRender(Terminal.Gui.ListViewRowEventArgs)">OnRowRender(ListViewRowEventArgs)</h4>
  1392. <div class="markdown level1 summary">
  1393. Virtual method that will invoke the <a class="xref" href="Terminal.Gui.ListView.html#Terminal_Gui_ListView_RowRender">RowRender</a>.
  1394. </div>
  1395. <div class="markdown level1 conceptual"></div>
  1396. <h5 class="decalaration">Declaration</h5>
  1397. <div class="codewrapper">
  1398. <pre><code class="lang-csharp hljs">public virtual void OnRowRender(ListViewRowEventArgs rowEventArgs)</code></pre>
  1399. </div>
  1400. <h5 class="parameters">Parameters</h5>
  1401. <table class="table table-bordered table-striped table-condensed">
  1402. <thead>
  1403. <tr>
  1404. <th>Type</th>
  1405. <th>Name</th>
  1406. <th>Description</th>
  1407. </tr>
  1408. </thead>
  1409. <tbody>
  1410. <tr>
  1411. <td><a class="xref" href="Terminal.Gui.ListViewRowEventArgs.html">ListViewRowEventArgs</a></td>
  1412. <td><span class="parametername">rowEventArgs</span></td>
  1413. <td></td>
  1414. </tr>
  1415. </tbody>
  1416. </table>
  1417. <span class="small pull-right mobile-hide">
  1418. <span class="divider">|</span>
  1419. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Terminal_Gui_ListView_OnSelectedChanged.md&amp;value=---%0Auid%3A%20Terminal.Gui.ListView.OnSelectedChanged%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1420. </span>
  1421. <span class="small pull-right mobile-hide">
  1422. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/Views/ListView.cs/#L661">View Source</a>
  1423. </span>
  1424. <a id="Terminal_Gui_ListView_OnSelectedChanged_" data-uid="Terminal.Gui.ListView.OnSelectedChanged*"></a>
  1425. <h4 id="Terminal_Gui_ListView_OnSelectedChanged" data-uid="Terminal.Gui.ListView.OnSelectedChanged">OnSelectedChanged()</h4>
  1426. <div class="markdown level1 summary">
  1427. Invokes the SelectedChanged event if it is defined.
  1428. </div>
  1429. <div class="markdown level1 conceptual"></div>
  1430. <h5 class="decalaration">Declaration</h5>
  1431. <div class="codewrapper">
  1432. <pre><code class="lang-csharp hljs">public virtual bool OnSelectedChanged()</code></pre>
  1433. </div>
  1434. <h5 class="returns">Returns</h5>
  1435. <table class="table table-bordered table-striped table-condensed">
  1436. <thead>
  1437. <tr>
  1438. <th>Type</th>
  1439. <th>Description</th>
  1440. </tr>
  1441. </thead>
  1442. <tbody>
  1443. <tr>
  1444. <td><span class="xref">System.Boolean</span></td>
  1445. <td></td>
  1446. </tr>
  1447. </tbody>
  1448. </table>
  1449. <span class="small pull-right mobile-hide">
  1450. <span class="divider">|</span>
  1451. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Terminal_Gui_ListView_PositionCursor.md&amp;value=---%0Auid%3A%20Terminal.Gui.ListView.PositionCursor%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1452. </span>
  1453. <span class="small pull-right mobile-hide">
  1454. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/Views/ListView.cs/#L735">View Source</a>
  1455. </span>
  1456. <a id="Terminal_Gui_ListView_PositionCursor_" data-uid="Terminal.Gui.ListView.PositionCursor*"></a>
  1457. <h4 id="Terminal_Gui_ListView_PositionCursor" data-uid="Terminal.Gui.ListView.PositionCursor">PositionCursor()</h4>
  1458. <div class="markdown level1 summary"></div>
  1459. <div class="markdown level1 conceptual"></div>
  1460. <h5 class="decalaration">Declaration</h5>
  1461. <div class="codewrapper">
  1462. <pre><code class="lang-csharp hljs">public override void PositionCursor()</code></pre>
  1463. </div>
  1464. <h5 class="overrides">Overrides</h5>
  1465. <div><a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_PositionCursor">View.PositionCursor()</a></div>
  1466. <span class="small pull-right mobile-hide">
  1467. <span class="divider">|</span>
  1468. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Terminal_Gui_ListView_ProcessKey_Terminal_Gui_KeyEvent_.md&amp;value=---%0Auid%3A%20Terminal.Gui.ListView.ProcessKey(Terminal.Gui.KeyEvent)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1469. </span>
  1470. <span class="small pull-right mobile-hide">
  1471. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/Views/ListView.cs/#L413">View Source</a>
  1472. </span>
  1473. <a id="Terminal_Gui_ListView_ProcessKey_" data-uid="Terminal.Gui.ListView.ProcessKey*"></a>
  1474. <h4 id="Terminal_Gui_ListView_ProcessKey_Terminal_Gui_KeyEvent_" data-uid="Terminal.Gui.ListView.ProcessKey(Terminal.Gui.KeyEvent)">ProcessKey(KeyEvent)</h4>
  1475. <div class="markdown level1 summary"></div>
  1476. <div class="markdown level1 conceptual"></div>
  1477. <h5 class="decalaration">Declaration</h5>
  1478. <div class="codewrapper">
  1479. <pre><code class="lang-csharp hljs">public override bool ProcessKey(KeyEvent kb)</code></pre>
  1480. </div>
  1481. <h5 class="parameters">Parameters</h5>
  1482. <table class="table table-bordered table-striped table-condensed">
  1483. <thead>
  1484. <tr>
  1485. <th>Type</th>
  1486. <th>Name</th>
  1487. <th>Description</th>
  1488. </tr>
  1489. </thead>
  1490. <tbody>
  1491. <tr>
  1492. <td><a class="xref" href="Terminal.Gui.KeyEvent.html">KeyEvent</a></td>
  1493. <td><span class="parametername">kb</span></td>
  1494. <td></td>
  1495. </tr>
  1496. </tbody>
  1497. </table>
  1498. <h5 class="returns">Returns</h5>
  1499. <table class="table table-bordered table-striped table-condensed">
  1500. <thead>
  1501. <tr>
  1502. <th>Type</th>
  1503. <th>Description</th>
  1504. </tr>
  1505. </thead>
  1506. <tbody>
  1507. <tr>
  1508. <td><span class="xref">System.Boolean</span></td>
  1509. <td></td>
  1510. </tr>
  1511. </tbody>
  1512. </table>
  1513. <h5 class="overrides">Overrides</h5>
  1514. <div><a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_ProcessKey_Terminal_Gui_KeyEvent_">View.ProcessKey(KeyEvent)</a></div>
  1515. <span class="small pull-right mobile-hide">
  1516. <span class="divider">|</span>
  1517. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Terminal_Gui_ListView_Redraw_Terminal_Gui_Rect_.md&amp;value=---%0Auid%3A%20Terminal.Gui.ListView.Redraw(Terminal.Gui.Rect)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1518. </span>
  1519. <span class="small pull-right mobile-hide">
  1520. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/Views/ListView.cs/#L355">View Source</a>
  1521. </span>
  1522. <a id="Terminal_Gui_ListView_Redraw_" data-uid="Terminal.Gui.ListView.Redraw*"></a>
  1523. <h4 id="Terminal_Gui_ListView_Redraw_Terminal_Gui_Rect_" data-uid="Terminal.Gui.ListView.Redraw(Terminal.Gui.Rect)">Redraw(Rect)</h4>
  1524. <div class="markdown level1 summary"></div>
  1525. <div class="markdown level1 conceptual"></div>
  1526. <h5 class="decalaration">Declaration</h5>
  1527. <div class="codewrapper">
  1528. <pre><code class="lang-csharp hljs">public override void Redraw(Rect bounds)</code></pre>
  1529. </div>
  1530. <h5 class="parameters">Parameters</h5>
  1531. <table class="table table-bordered table-striped table-condensed">
  1532. <thead>
  1533. <tr>
  1534. <th>Type</th>
  1535. <th>Name</th>
  1536. <th>Description</th>
  1537. </tr>
  1538. </thead>
  1539. <tbody>
  1540. <tr>
  1541. <td><a class="xref" href="Terminal.Gui.Rect.html">Rect</a></td>
  1542. <td><span class="parametername">bounds</span></td>
  1543. <td></td>
  1544. </tr>
  1545. </tbody>
  1546. </table>
  1547. <h5 class="overrides">Overrides</h5>
  1548. <div><a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Redraw_Terminal_Gui_Rect_">View.Redraw(Rect)</a></div>
  1549. <span class="small pull-right mobile-hide">
  1550. <span class="divider">|</span>
  1551. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Terminal_Gui_ListView_ScrollDown_System_Int32_.md&amp;value=---%0Auid%3A%20Terminal.Gui.ListView.ScrollDown(System.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1552. </span>
  1553. <span class="small pull-right mobile-hide">
  1554. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/Views/ListView.cs/#L614">View Source</a>
  1555. </span>
  1556. <a id="Terminal_Gui_ListView_ScrollDown_" data-uid="Terminal.Gui.ListView.ScrollDown*"></a>
  1557. <h4 id="Terminal_Gui_ListView_ScrollDown_System_Int32_" data-uid="Terminal.Gui.ListView.ScrollDown(System.Int32)">ScrollDown(Int32)</h4>
  1558. <div class="markdown level1 summary">
  1559. Scrolls the view down.
  1560. </div>
  1561. <div class="markdown level1 conceptual"></div>
  1562. <h5 class="decalaration">Declaration</h5>
  1563. <div class="codewrapper">
  1564. <pre><code class="lang-csharp hljs">public virtual bool ScrollDown(int lines)</code></pre>
  1565. </div>
  1566. <h5 class="parameters">Parameters</h5>
  1567. <table class="table table-bordered table-striped table-condensed">
  1568. <thead>
  1569. <tr>
  1570. <th>Type</th>
  1571. <th>Name</th>
  1572. <th>Description</th>
  1573. </tr>
  1574. </thead>
  1575. <tbody>
  1576. <tr>
  1577. <td><span class="xref">System.Int32</span></td>
  1578. <td><span class="parametername">lines</span></td>
  1579. <td>Number of lines to scroll down.</td>
  1580. </tr>
  1581. </tbody>
  1582. </table>
  1583. <h5 class="returns">Returns</h5>
  1584. <table class="table table-bordered table-striped table-condensed">
  1585. <thead>
  1586. <tr>
  1587. <th>Type</th>
  1588. <th>Description</th>
  1589. </tr>
  1590. </thead>
  1591. <tbody>
  1592. <tr>
  1593. <td><span class="xref">System.Boolean</span></td>
  1594. <td></td>
  1595. </tr>
  1596. </tbody>
  1597. </table>
  1598. <span class="small pull-right mobile-hide">
  1599. <span class="divider">|</span>
  1600. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Terminal_Gui_ListView_ScrollLeft_System_Int32_.md&amp;value=---%0Auid%3A%20Terminal.Gui.ListView.ScrollLeft(System.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1601. </span>
  1602. <span class="small pull-right mobile-hide">
  1603. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/Views/ListView.cs/#L647">View Source</a>
  1604. </span>
  1605. <a id="Terminal_Gui_ListView_ScrollLeft_" data-uid="Terminal.Gui.ListView.ScrollLeft*"></a>
  1606. <h4 id="Terminal_Gui_ListView_ScrollLeft_System_Int32_" data-uid="Terminal.Gui.ListView.ScrollLeft(System.Int32)">ScrollLeft(Int32)</h4>
  1607. <div class="markdown level1 summary">
  1608. Scrolls the view left.
  1609. </div>
  1610. <div class="markdown level1 conceptual"></div>
  1611. <h5 class="decalaration">Declaration</h5>
  1612. <div class="codewrapper">
  1613. <pre><code class="lang-csharp hljs">public virtual bool ScrollLeft(int cols)</code></pre>
  1614. </div>
  1615. <h5 class="parameters">Parameters</h5>
  1616. <table class="table table-bordered table-striped table-condensed">
  1617. <thead>
  1618. <tr>
  1619. <th>Type</th>
  1620. <th>Name</th>
  1621. <th>Description</th>
  1622. </tr>
  1623. </thead>
  1624. <tbody>
  1625. <tr>
  1626. <td><span class="xref">System.Int32</span></td>
  1627. <td><span class="parametername">cols</span></td>
  1628. <td>Number of columns to scroll left.</td>
  1629. </tr>
  1630. </tbody>
  1631. </table>
  1632. <h5 class="returns">Returns</h5>
  1633. <table class="table table-bordered table-striped table-condensed">
  1634. <thead>
  1635. <tr>
  1636. <th>Type</th>
  1637. <th>Description</th>
  1638. </tr>
  1639. </thead>
  1640. <tbody>
  1641. <tr>
  1642. <td><span class="xref">System.Boolean</span></td>
  1643. <td></td>
  1644. </tr>
  1645. </tbody>
  1646. </table>
  1647. <span class="small pull-right mobile-hide">
  1648. <span class="divider">|</span>
  1649. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Terminal_Gui_ListView_ScrollRight_System_Int32_.md&amp;value=---%0Auid%3A%20Terminal.Gui.ListView.ScrollRight(System.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1650. </span>
  1651. <span class="small pull-right mobile-hide">
  1652. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/Views/ListView.cs/#L636">View Source</a>
  1653. </span>
  1654. <a id="Terminal_Gui_ListView_ScrollRight_" data-uid="Terminal.Gui.ListView.ScrollRight*"></a>
  1655. <h4 id="Terminal_Gui_ListView_ScrollRight_System_Int32_" data-uid="Terminal.Gui.ListView.ScrollRight(System.Int32)">ScrollRight(Int32)</h4>
  1656. <div class="markdown level1 summary">
  1657. Scrolls the view right.
  1658. </div>
  1659. <div class="markdown level1 conceptual"></div>
  1660. <h5 class="decalaration">Declaration</h5>
  1661. <div class="codewrapper">
  1662. <pre><code class="lang-csharp hljs">public virtual bool ScrollRight(int cols)</code></pre>
  1663. </div>
  1664. <h5 class="parameters">Parameters</h5>
  1665. <table class="table table-bordered table-striped table-condensed">
  1666. <thead>
  1667. <tr>
  1668. <th>Type</th>
  1669. <th>Name</th>
  1670. <th>Description</th>
  1671. </tr>
  1672. </thead>
  1673. <tbody>
  1674. <tr>
  1675. <td><span class="xref">System.Int32</span></td>
  1676. <td><span class="parametername">cols</span></td>
  1677. <td>Number of columns to scroll right.</td>
  1678. </tr>
  1679. </tbody>
  1680. </table>
  1681. <h5 class="returns">Returns</h5>
  1682. <table class="table table-bordered table-striped table-condensed">
  1683. <thead>
  1684. <tr>
  1685. <th>Type</th>
  1686. <th>Description</th>
  1687. </tr>
  1688. </thead>
  1689. <tbody>
  1690. <tr>
  1691. <td><span class="xref">System.Boolean</span></td>
  1692. <td></td>
  1693. </tr>
  1694. </tbody>
  1695. </table>
  1696. <span class="small pull-right mobile-hide">
  1697. <span class="divider">|</span>
  1698. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Terminal_Gui_ListView_ScrollUp_System_Int32_.md&amp;value=---%0Auid%3A%20Terminal.Gui.ListView.ScrollUp(System.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1699. </span>
  1700. <span class="small pull-right mobile-hide">
  1701. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/Views/ListView.cs/#L625">View Source</a>
  1702. </span>
  1703. <a id="Terminal_Gui_ListView_ScrollUp_" data-uid="Terminal.Gui.ListView.ScrollUp*"></a>
  1704. <h4 id="Terminal_Gui_ListView_ScrollUp_System_Int32_" data-uid="Terminal.Gui.ListView.ScrollUp(System.Int32)">ScrollUp(Int32)</h4>
  1705. <div class="markdown level1 summary">
  1706. Scrolls the view up.
  1707. </div>
  1708. <div class="markdown level1 conceptual"></div>
  1709. <h5 class="decalaration">Declaration</h5>
  1710. <div class="codewrapper">
  1711. <pre><code class="lang-csharp hljs">public virtual bool ScrollUp(int lines)</code></pre>
  1712. </div>
  1713. <h5 class="parameters">Parameters</h5>
  1714. <table class="table table-bordered table-striped table-condensed">
  1715. <thead>
  1716. <tr>
  1717. <th>Type</th>
  1718. <th>Name</th>
  1719. <th>Description</th>
  1720. </tr>
  1721. </thead>
  1722. <tbody>
  1723. <tr>
  1724. <td><span class="xref">System.Int32</span></td>
  1725. <td><span class="parametername">lines</span></td>
  1726. <td>Number of lines to scroll up.</td>
  1727. </tr>
  1728. </tbody>
  1729. </table>
  1730. <h5 class="returns">Returns</h5>
  1731. <table class="table table-bordered table-striped table-condensed">
  1732. <thead>
  1733. <tr>
  1734. <th>Type</th>
  1735. <th>Description</th>
  1736. </tr>
  1737. </thead>
  1738. <tbody>
  1739. <tr>
  1740. <td><span class="xref">System.Boolean</span></td>
  1741. <td></td>
  1742. </tr>
  1743. </tbody>
  1744. </table>
  1745. <span class="small pull-right mobile-hide">
  1746. <span class="divider">|</span>
  1747. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Terminal_Gui_ListView_SetSource_System_Collections_IList_.md&amp;value=---%0Auid%3A%20Terminal.Gui.ListView.SetSource(System.Collections.IList)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1748. </span>
  1749. <span class="small pull-right mobile-hide">
  1750. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/Views/ListView.cs/#L141">View Source</a>
  1751. </span>
  1752. <a id="Terminal_Gui_ListView_SetSource_" data-uid="Terminal.Gui.ListView.SetSource*"></a>
  1753. <h4 id="Terminal_Gui_ListView_SetSource_System_Collections_IList_" data-uid="Terminal.Gui.ListView.SetSource(System.Collections.IList)">SetSource(IList)</h4>
  1754. <div class="markdown level1 summary">
  1755. Sets the source of the <a class="xref" href="Terminal.Gui.ListView.html">ListView</a> to an <span class="xref">System.Collections.IList</span>.
  1756. </div>
  1757. <div class="markdown level1 conceptual"></div>
  1758. <h5 class="decalaration">Declaration</h5>
  1759. <div class="codewrapper">
  1760. <pre><code class="lang-csharp hljs">public void SetSource(IList source)</code></pre>
  1761. </div>
  1762. <h5 class="parameters">Parameters</h5>
  1763. <table class="table table-bordered table-striped table-condensed">
  1764. <thead>
  1765. <tr>
  1766. <th>Type</th>
  1767. <th>Name</th>
  1768. <th>Description</th>
  1769. </tr>
  1770. </thead>
  1771. <tbody>
  1772. <tr>
  1773. <td><span class="xref">System.Collections.IList</span></td>
  1774. <td><span class="parametername">source</span></td>
  1775. <td></td>
  1776. </tr>
  1777. </tbody>
  1778. </table>
  1779. <span class="small pull-right mobile-hide">
  1780. <span class="divider">|</span>
  1781. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Terminal_Gui_ListView_SetSourceAsync_System_Collections_IList_.md&amp;value=---%0Auid%3A%20Terminal.Gui.ListView.SetSourceAsync(System.Collections.IList)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1782. </span>
  1783. <span class="small pull-right mobile-hide">
  1784. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/Views/ListView.cs/#L157">View Source</a>
  1785. </span>
  1786. <a id="Terminal_Gui_ListView_SetSourceAsync_" data-uid="Terminal.Gui.ListView.SetSourceAsync*"></a>
  1787. <h4 id="Terminal_Gui_ListView_SetSourceAsync_System_Collections_IList_" data-uid="Terminal.Gui.ListView.SetSourceAsync(System.Collections.IList)">SetSourceAsync(IList)</h4>
  1788. <div class="markdown level1 summary">
  1789. Sets the source to an <span class="xref">System.Collections.IList</span> value asynchronously.
  1790. </div>
  1791. <div class="markdown level1 conceptual"></div>
  1792. <h5 class="decalaration">Declaration</h5>
  1793. <div class="codewrapper">
  1794. <pre><code class="lang-csharp hljs">public Task SetSourceAsync(IList source)</code></pre>
  1795. </div>
  1796. <h5 class="parameters">Parameters</h5>
  1797. <table class="table table-bordered table-striped table-condensed">
  1798. <thead>
  1799. <tr>
  1800. <th>Type</th>
  1801. <th>Name</th>
  1802. <th>Description</th>
  1803. </tr>
  1804. </thead>
  1805. <tbody>
  1806. <tr>
  1807. <td><span class="xref">System.Collections.IList</span></td>
  1808. <td><span class="parametername">source</span></td>
  1809. <td></td>
  1810. </tr>
  1811. </tbody>
  1812. </table>
  1813. <h5 class="returns">Returns</h5>
  1814. <table class="table table-bordered table-striped table-condensed">
  1815. <thead>
  1816. <tr>
  1817. <th>Type</th>
  1818. <th>Description</th>
  1819. </tr>
  1820. </thead>
  1821. <tbody>
  1822. <tr>
  1823. <td><span class="xref">System.Threading.Tasks.Task</span></td>
  1824. <td>An item implementing the IList interface.</td>
  1825. </tr>
  1826. </tbody>
  1827. </table>
  1828. <h3 id="events">Events
  1829. </h3>
  1830. <span class="small pull-right mobile-hide">
  1831. <span class="divider">|</span>
  1832. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Terminal_Gui_ListView_OpenSelectedItem.md&amp;value=---%0Auid%3A%20Terminal.Gui.ListView.OpenSelectedItem%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1833. </span>
  1834. <span class="small pull-right mobile-hide">
  1835. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/Views/ListView.cs/#L405">View Source</a>
  1836. </span>
  1837. <h4 id="Terminal_Gui_ListView_OpenSelectedItem" data-uid="Terminal.Gui.ListView.OpenSelectedItem">OpenSelectedItem</h4>
  1838. <div class="markdown level1 summary">
  1839. This event is raised when the user Double Clicks on an item or presses ENTER to open the selected item.
  1840. </div>
  1841. <div class="markdown level1 conceptual"></div>
  1842. <h5 class="decalaration">Declaration</h5>
  1843. <div class="codewrapper">
  1844. <pre><code class="lang-csharp hljs">public event Action&lt;ListViewItemEventArgs&gt; OpenSelectedItem</code></pre>
  1845. </div>
  1846. <h5 class="eventType">Event Type</h5>
  1847. <table class="table table-bordered table-striped table-condensed">
  1848. <thead>
  1849. <tr>
  1850. <th>Type</th>
  1851. <th>Description</th>
  1852. </tr>
  1853. </thead>
  1854. <tbody>
  1855. <tr>
  1856. <td><span class="xref">System.Action</span>&lt;<a class="xref" href="Terminal.Gui.ListViewItemEventArgs.html">ListViewItemEventArgs</a>&gt;</td>
  1857. <td></td>
  1858. </tr>
  1859. </tbody>
  1860. </table>
  1861. <span class="small pull-right mobile-hide">
  1862. <span class="divider">|</span>
  1863. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Terminal_Gui_ListView_RowRender.md&amp;value=---%0Auid%3A%20Terminal.Gui.ListView.RowRender%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1864. </span>
  1865. <span class="small pull-right mobile-hide">
  1866. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/Views/ListView.cs/#L410">View Source</a>
  1867. </span>
  1868. <h4 id="Terminal_Gui_ListView_RowRender" data-uid="Terminal.Gui.ListView.RowRender">RowRender</h4>
  1869. <div class="markdown level1 summary">
  1870. This event is invoked when this <a class="xref" href="Terminal.Gui.ListView.html">ListView</a> is being drawn before rendering.
  1871. </div>
  1872. <div class="markdown level1 conceptual"></div>
  1873. <h5 class="decalaration">Declaration</h5>
  1874. <div class="codewrapper">
  1875. <pre><code class="lang-csharp hljs">public event Action&lt;ListViewRowEventArgs&gt; RowRender</code></pre>
  1876. </div>
  1877. <h5 class="eventType">Event Type</h5>
  1878. <table class="table table-bordered table-striped table-condensed">
  1879. <thead>
  1880. <tr>
  1881. <th>Type</th>
  1882. <th>Description</th>
  1883. </tr>
  1884. </thead>
  1885. <tbody>
  1886. <tr>
  1887. <td><span class="xref">System.Action</span>&lt;<a class="xref" href="Terminal.Gui.ListViewRowEventArgs.html">ListViewRowEventArgs</a>&gt;</td>
  1888. <td></td>
  1889. </tr>
  1890. </tbody>
  1891. </table>
  1892. <span class="small pull-right mobile-hide">
  1893. <span class="divider">|</span>
  1894. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Terminal_Gui_ListView_SelectedItemChanged.md&amp;value=---%0Auid%3A%20Terminal.Gui.ListView.SelectedItemChanged%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1895. </span>
  1896. <span class="small pull-right mobile-hide">
  1897. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/Views/ListView.cs/#L400">View Source</a>
  1898. </span>
  1899. <h4 id="Terminal_Gui_ListView_SelectedItemChanged" data-uid="Terminal.Gui.ListView.SelectedItemChanged">SelectedItemChanged</h4>
  1900. <div class="markdown level1 summary">
  1901. This event is raised when the selected item in the <a class="xref" href="Terminal.Gui.ListView.html">ListView</a> has changed.
  1902. </div>
  1903. <div class="markdown level1 conceptual"></div>
  1904. <h5 class="decalaration">Declaration</h5>
  1905. <div class="codewrapper">
  1906. <pre><code class="lang-csharp hljs">public event Action&lt;ListViewItemEventArgs&gt; SelectedItemChanged</code></pre>
  1907. </div>
  1908. <h5 class="eventType">Event Type</h5>
  1909. <table class="table table-bordered table-striped table-condensed">
  1910. <thead>
  1911. <tr>
  1912. <th>Type</th>
  1913. <th>Description</th>
  1914. </tr>
  1915. </thead>
  1916. <tbody>
  1917. <tr>
  1918. <td><span class="xref">System.Action</span>&lt;<a class="xref" href="Terminal.Gui.ListViewItemEventArgs.html">ListViewItemEventArgs</a>&gt;</td>
  1919. <td></td>
  1920. </tr>
  1921. </tbody>
  1922. </table>
  1923. <h3 id="implements">Implements</h3>
  1924. <div>
  1925. <span class="xref">System.IDisposable</span>
  1926. </div>
  1927. <div>
  1928. <span class="xref">System.ComponentModel.ISupportInitializeNotification</span>
  1929. </div>
  1930. <div>
  1931. <span class="xref">System.ComponentModel.ISupportInitialize</span>
  1932. </div>
  1933. </article>
  1934. </div>
  1935. <div class="hidden-sm col-md-2" role="complementary">
  1936. <div class="sideaffix">
  1937. <div class="contribution">
  1938. <ul class="nav">
  1939. <li>
  1940. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Terminal_Gui_ListView.md&amp;value=---%0Auid%3A%20Terminal.Gui.ListView%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
  1941. </li>
  1942. <li>
  1943. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/Views/ListView.cs/#L111" class="contribution-link">View Source</a>
  1944. </li>
  1945. </ul>
  1946. </div>
  1947. <nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
  1948. <h5>In This Article</h5>
  1949. <div></div>
  1950. </nav>
  1951. </div>
  1952. </div>
  1953. </div>
  1954. </div>
  1955. <footer>
  1956. <div class="grad-bottom"></div>
  1957. <div class="footer">
  1958. <div class="container">
  1959. <span class="pull-right">
  1960. <a href="#top">Back to top</a>
  1961. </span>
  1962. <span>Generated by <strong>DocFX</strong></span>
  1963. </div>
  1964. </div>
  1965. </footer>
  1966. </div>
  1967. <script type="text/javascript" src="../../styles/docfx.vendor.js"></script>
  1968. <script type="text/javascript" src="../../styles/docfx.js"></script>
  1969. <script type="text/javascript" src="../../styles/main.js"></script>
  1970. </body>
  1971. </html>