|
@@ -84,7 +84,8 @@
|
|
|
<h1 id="Terminal_Gui_Toplevel" data-uid="Terminal.Gui.Toplevel" class="text-break">Class Toplevel
|
|
|
</h1>
|
|
|
<div class="markdown level0 summary">
|
|
|
-Toplevel views can be modally executed.
|
|
|
+Toplevel views can be modally executed. They are used for both an application's main view (filling the entire screeN and
|
|
|
+for pop-up views such as <a class="xref" href="Terminal.Gui.Dialog.html">Dialog</a>, <a class="xref" href="Terminal.Gui.MessageBox.html">MessageBox</a>, and <a class="xref" href="Terminal.Gui.Wizard.html">Wizard</a>.
|
|
|
</div>
|
|
|
<div class="markdown level0 conceptual"></div>
|
|
|
<div class="inheritance">
|
|
@@ -503,7 +504,7 @@ Toplevel views can be modally executed.
|
|
|
<p>
|
|
|
Toplevels can be modally executing views, started by calling <a class="xref" href="Terminal.Gui.Application.html#Terminal_Gui_Application_Run_Terminal_Gui_Toplevel_System_Func_System_Exception_System_Boolean__">Run(Toplevel, Func<Exception, Boolean>)</a>.
|
|
|
They return control to the caller when <a class="xref" href="Terminal.Gui.Application.html#Terminal_Gui_Application_RequestStop_Terminal_Gui_Toplevel_">RequestStop(Toplevel)</a> has
|
|
|
- been called (which sets the <a class="xref" href="Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_Running">Running</a> property to false).
|
|
|
+ been called (which sets the <a class="xref" href="Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_Running">Running</a> property to <code>false</code>).
|
|
|
</p>
|
|
|
<p>
|
|
|
A Toplevel is created when an application initializes Terminal.Gui by calling <a class="xref" href="Terminal.Gui.Application.html#Terminal_Gui_Application_Init_Terminal_Gui_ConsoleDriver_Terminal_Gui_IMainLoopDriver_">Init(ConsoleDriver, IMainLoopDriver)</a>.
|
|
@@ -530,7 +531,8 @@ instead of on every run.
|
|
|
<a id="Terminal_Gui_Toplevel__ctor_" data-uid="Terminal.Gui.Toplevel.#ctor*"></a>
|
|
|
<h4 id="Terminal_Gui_Toplevel__ctor" data-uid="Terminal.Gui.Toplevel.#ctor">Toplevel()</h4>
|
|
|
<div class="markdown level1 summary">
|
|
|
-Initializes a new instance of the <a class="xref" href="Terminal.Gui.Toplevel.html">Toplevel</a> class with <a class="xref" href="Terminal.Gui.LayoutStyle.html#Terminal_Gui_LayoutStyle_Computed">Computed</a> layout, defaulting to full screen.
|
|
|
+Initializes a new instance of the <a class="xref" href="Terminal.Gui.Toplevel.html">Toplevel</a> class with <a class="xref" href="Terminal.Gui.LayoutStyle.html#Terminal_Gui_LayoutStyle_Computed">Computed</a> layout,
|
|
|
+defaulting to full screen.
|
|
|
</div>
|
|
|
<div class="markdown level1 conceptual"></div>
|
|
|
<h5 class="decalaration">Declaration</h5>
|
|
@@ -540,7 +542,7 @@ Initializes a new instance of the <a class="xref" href="Terminal.Gui.Toplevel.ht
|
|
|
<a id="Terminal_Gui_Toplevel__ctor_" data-uid="Terminal.Gui.Toplevel.#ctor*"></a>
|
|
|
<h4 id="Terminal_Gui_Toplevel__ctor_Terminal_Gui_Rect_" data-uid="Terminal.Gui.Toplevel.#ctor(Terminal.Gui.Rect)">Toplevel(Rect)</h4>
|
|
|
<div class="markdown level1 summary">
|
|
|
-Initializes a new instance of the <a class="xref" href="Terminal.Gui.Toplevel.html">Toplevel</a> class with the specified absolute layout.
|
|
|
+Initializes a new instance of the <a class="xref" href="Terminal.Gui.Toplevel.html">Toplevel</a> class with the specified <a class="xref" href="Terminal.Gui.LayoutStyle.html#Terminal_Gui_LayoutStyle_Absolute">Absolute</a> layout.
|
|
|
</div>
|
|
|
<div class="markdown level1 conceptual"></div>
|
|
|
<h5 class="decalaration">Declaration</h5>
|
|
@@ -646,7 +648,7 @@ Gets or sets if this Toplevel is a Mdi container.
|
|
|
<a id="Terminal_Gui_Toplevel_MenuBar_" data-uid="Terminal.Gui.Toplevel.MenuBar*"></a>
|
|
|
<h4 id="Terminal_Gui_Toplevel_MenuBar" data-uid="Terminal.Gui.Toplevel.MenuBar">MenuBar</h4>
|
|
|
<div class="markdown level1 summary">
|
|
|
-Gets or sets the menu for this Toplevel
|
|
|
+Gets or sets the menu for this Toplevel.
|
|
|
</div>
|
|
|
<div class="markdown level1 conceptual"></div>
|
|
|
<h5 class="decalaration">Declaration</h5>
|
|
@@ -671,9 +673,14 @@ Gets or sets the menu for this Toplevel
|
|
|
<a id="Terminal_Gui_Toplevel_Modal_" data-uid="Terminal.Gui.Toplevel.Modal*"></a>
|
|
|
<h4 id="Terminal_Gui_Toplevel_Modal" data-uid="Terminal.Gui.Toplevel.Modal">Modal</h4>
|
|
|
<div class="markdown level1 summary">
|
|
|
-Determines whether the <a class="xref" href="Terminal.Gui.Toplevel.html">Toplevel</a> is modal or not.
|
|
|
-Causes <a class="xref" href="Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_ProcessKey_Terminal_Gui_KeyEvent_">ProcessKey(KeyEvent)</a> to propagate keys upwards
|
|
|
-by default unless set to <span class="xref">true</span>.
|
|
|
+Determines whether the <a class="xref" href="Terminal.Gui.Toplevel.html">Toplevel</a> is modal or not.
|
|
|
+If set to <code>false</code> (the default):
|
|
|
+
|
|
|
+<ul><li><a class="xref" href="Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_ProcessKey_Terminal_Gui_KeyEvent_">ProcessKey(KeyEvent)</a> events will propagate keys upwards.</li><li>The Toplevel will act as an embedded view (not a modal/pop-up).</li></ul>
|
|
|
+
|
|
|
+If set to <code>true</code>:
|
|
|
+
|
|
|
+<ul><li><a class="xref" href="Terminal.Gui.Toplevel.html#Terminal_Gui_Toplevel_ProcessKey_Terminal_Gui_KeyEvent_">ProcessKey(KeyEvent)</a> events will NOT propogate keys upwards.</li><li>The Toplevel will and look like a modal (pop-up) (e.g. see <a class="xref" href="Terminal.Gui.Dialog.html">Dialog</a>.</li></ul>
|
|
|
</div>
|
|
|
<div class="markdown level1 conceptual"></div>
|
|
|
<h5 class="decalaration">Declaration</h5>
|
|
@@ -727,7 +734,7 @@ Setting this property directly is discouraged. Use <a class="xref" href="Termina
|
|
|
<a id="Terminal_Gui_Toplevel_StatusBar_" data-uid="Terminal.Gui.Toplevel.StatusBar*"></a>
|
|
|
<h4 id="Terminal_Gui_Toplevel_StatusBar" data-uid="Terminal.Gui.Toplevel.StatusBar">StatusBar</h4>
|
|
|
<div class="markdown level1 summary">
|
|
|
-Gets or sets the status bar for this Toplevel
|
|
|
+Gets or sets the status bar for this Toplevel.
|
|
|
</div>
|
|
|
<div class="markdown level1 conceptual"></div>
|
|
|
<h5 class="decalaration">Declaration</h5>
|
|
@@ -805,14 +812,14 @@ Convenience factory method that creates a new Toplevel with the current terminal
|
|
|
<tbody>
|
|
|
<tr>
|
|
|
<td><a class="xref" href="Terminal.Gui.Toplevel.html">Toplevel</a></td>
|
|
|
- <td>The create.</td>
|
|
|
+ <td>The created Toplevel.</td>
|
|
|
</tr>
|
|
|
</tbody>
|
|
|
</table>
|
|
|
<a id="Terminal_Gui_Toplevel_GetTopMdiChild_" data-uid="Terminal.Gui.Toplevel.GetTopMdiChild*"></a>
|
|
|
<h4 id="Terminal_Gui_Toplevel_GetTopMdiChild_System_Type_System_String___" data-uid="Terminal.Gui.Toplevel.GetTopMdiChild(System.Type,System.String[])">GetTopMdiChild(Type, String[])</h4>
|
|
|
<div class="markdown level1 summary">
|
|
|
-Gets the current visible toplevel Mdi child that match the arguments pattern.
|
|
|
+Gets the current visible Toplevel Mdi child that matches the arguments pattern.
|
|
|
</div>
|
|
|
<div class="markdown level1 conceptual"></div>
|
|
|
<h5 class="decalaration">Declaration</h5>
|
|
@@ -1065,7 +1072,7 @@ Method invoked when a key is released.
|
|
|
<a id="Terminal_Gui_Toplevel_OnLoaded_" data-uid="Terminal.Gui.Toplevel.OnLoaded*"></a>
|
|
|
<h4 id="Terminal_Gui_Toplevel_OnLoaded" data-uid="Terminal.Gui.Toplevel.OnLoaded">OnLoaded()</h4>
|
|
|
<div class="markdown level1 summary">
|
|
|
-Called from <a class="xref" href="Terminal.Gui.Application.html#Terminal_Gui_Application_Begin_Terminal_Gui_Toplevel_">Begin(Toplevel)</a> before the <a class="xref" href="Terminal.Gui.Toplevel.html">Toplevel</a> is redraws for the first time.
|
|
|
+Called from <a class="xref" href="Terminal.Gui.Application.html#Terminal_Gui_Application_Begin_Terminal_Gui_Toplevel_">Begin(Toplevel)</a> before the <a class="xref" href="Terminal.Gui.Toplevel.html">Toplevel</a> redraws for the first time.
|
|
|
</div>
|
|
|
<div class="markdown level1 conceptual"></div>
|
|
|
<h5 class="decalaration">Declaration</h5>
|
|
@@ -1114,7 +1121,7 @@ Positions the cursor in the right position based on the currently focused view i
|
|
|
<a id="Terminal_Gui_Toplevel_PositionToplevel_" data-uid="Terminal.Gui.Toplevel.PositionToplevel*"></a>
|
|
|
<h4 id="Terminal_Gui_Toplevel_PositionToplevel_Terminal_Gui_Toplevel_" data-uid="Terminal.Gui.Toplevel.PositionToplevel(Terminal.Gui.Toplevel)">PositionToplevel(Toplevel)</h4>
|
|
|
<div class="markdown level1 summary">
|
|
|
-Virtual method which allow to be overridden to implement specific positions for inherited <a class="xref" href="Terminal.Gui.Toplevel.html">Toplevel</a>.
|
|
|
+Virtual method enabling implementation of specific positions for inherited <a class="xref" href="Terminal.Gui.Toplevel.html">Toplevel</a> views.
|
|
|
</div>
|
|
|
<div class="markdown level1 conceptual"></div>
|
|
|
<h5 class="decalaration">Declaration</h5>
|
|
@@ -1355,7 +1362,8 @@ Removes all subviews (children) added via <a class="xref" href="Terminal.Gui.Vie
|
|
|
<a id="Terminal_Gui_Toplevel_RequestStop_" data-uid="Terminal.Gui.Toplevel.RequestStop*"></a>
|
|
|
<h4 id="Terminal_Gui_Toplevel_RequestStop" data-uid="Terminal.Gui.Toplevel.RequestStop">RequestStop()</h4>
|
|
|
<div class="markdown level1 summary">
|
|
|
-Stops running this <a class="xref" href="Terminal.Gui.Toplevel.html">Toplevel</a>.
|
|
|
+Stops and closes this <a class="xref" href="Terminal.Gui.Toplevel.html">Toplevel</a>. If this Toplevel is the top-most Toplevel,
|
|
|
+<a class="xref" href="Terminal.Gui.Application.html#Terminal_Gui_Application_RequestStop_Terminal_Gui_Toplevel_">RequestStop(Toplevel)</a> will be called, causing the application to exit.
|
|
|
</div>
|
|
|
<div class="markdown level1 conceptual"></div>
|
|
|
<h5 class="decalaration">Declaration</h5>
|
|
@@ -1365,7 +1373,8 @@ Stops running this <a class="xref" href="Terminal.Gui.Toplevel.html">Toplevel</a
|
|
|
<a id="Terminal_Gui_Toplevel_RequestStop_" data-uid="Terminal.Gui.Toplevel.RequestStop*"></a>
|
|
|
<h4 id="Terminal_Gui_Toplevel_RequestStop_Terminal_Gui_Toplevel_" data-uid="Terminal.Gui.Toplevel.RequestStop(Terminal.Gui.Toplevel)">RequestStop(Toplevel)</h4>
|
|
|
<div class="markdown level1 summary">
|
|
|
-Stops running the <code data-dev-comment-type="paramref" class="paramref">top</code> <a class="xref" href="Terminal.Gui.Toplevel.html">Toplevel</a>.
|
|
|
+Stops and closes the <a class="xref" href="Terminal.Gui.Toplevel.html">Toplevel</a> specified by <code data-dev-comment-type="paramref" class="paramref">top</code>. If <code data-dev-comment-type="paramref" class="paramref">top</code> is the top-most Toplevel,
|
|
|
+<a class="xref" href="Terminal.Gui.Application.html#Terminal_Gui_Application_RequestStop_Terminal_Gui_Toplevel_">RequestStop(Toplevel)</a> will be called, causing the application to exit.
|
|
|
</div>
|
|
|
<div class="markdown level1 conceptual"></div>
|
|
|
<h5 class="decalaration">Declaration</h5>
|
|
@@ -1392,7 +1401,7 @@ Stops running the <code data-dev-comment-type="paramref" class="paramref">top</c
|
|
|
<a id="Terminal_Gui_Toplevel_ShowChild_" data-uid="Terminal.Gui.Toplevel.ShowChild*"></a>
|
|
|
<h4 id="Terminal_Gui_Toplevel_ShowChild_Terminal_Gui_Toplevel_" data-uid="Terminal.Gui.Toplevel.ShowChild(Terminal.Gui.Toplevel)">ShowChild(Toplevel)</h4>
|
|
|
<div class="markdown level1 summary">
|
|
|
-Shows the Mdi child indicated by the <code data-dev-comment-type="paramref" class="paramref">top</code> setting as <a class="xref" href="Terminal.Gui.Application.html#Terminal_Gui_Application_Current">Current</a>.
|
|
|
+Shows the Mdi child indicated by <code data-dev-comment-type="paramref" class="paramref">top</code>, setting it as <a class="xref" href="Terminal.Gui.Application.html#Terminal_Gui_Application_Current">Current</a>.
|
|
|
</div>
|
|
|
<div class="markdown level1 conceptual"></div>
|
|
|
<h5 class="decalaration">Declaration</h5>
|
|
@@ -1412,7 +1421,7 @@ Shows the Mdi child indicated by the <code data-dev-comment-type="paramref" clas
|
|
|
<tr>
|
|
|
<td><a class="xref" href="Terminal.Gui.Toplevel.html">Toplevel</a></td>
|
|
|
<td><span class="parametername">top</span></td>
|
|
|
- <td>The toplevel.</td>
|
|
|
+ <td>The Toplevel.</td>
|
|
|
</tr>
|
|
|
</tbody>
|
|
|
</table>
|
|
@@ -1427,15 +1436,15 @@ Shows the Mdi child indicated by the <code data-dev-comment-type="paramref" clas
|
|
|
<tbody>
|
|
|
<tr>
|
|
|
<td><span class="xref">System.Boolean</span></td>
|
|
|
- <td><span class="xref">true</span> if the toplevel can be showed.<span class="xref">false</span> otherwise.</td>
|
|
|
+ <td><code>true</code> if the toplevel can be shown or <code>false</code> if not.</td>
|
|
|
</tr>
|
|
|
</tbody>
|
|
|
</table>
|
|
|
<a id="Terminal_Gui_Toplevel_WillPresent_" data-uid="Terminal.Gui.Toplevel.WillPresent*"></a>
|
|
|
<h4 id="Terminal_Gui_Toplevel_WillPresent" data-uid="Terminal.Gui.Toplevel.WillPresent">WillPresent()</h4>
|
|
|
<div class="markdown level1 summary">
|
|
|
-Invoked by <a class="xref" href="Terminal.Gui.Application.html#Terminal_Gui_Application_Begin_Terminal_Gui_Toplevel_">Begin(Toplevel)</a> as part of the <a class="xref" href="Terminal.Gui.Application.html#Terminal_Gui_Application_Run_Terminal_Gui_Toplevel_System_Func_System_Exception_System_Boolean__">Run(Toplevel, Func<Exception, Boolean>)</a> after
|
|
|
-the views have been laid out, and before the views are drawn for the first time.
|
|
|
+Invoked by <a class="xref" href="Terminal.Gui.Application.html#Terminal_Gui_Application_Begin_Terminal_Gui_Toplevel_">Begin(Toplevel)</a> as part of <a class="xref" href="Terminal.Gui.Application.html#Terminal_Gui_Application_Run_Terminal_Gui_Toplevel_System_Func_System_Exception_System_Boolean__">Run(Toplevel, Func<Exception, Boolean>)</a>
|
|
|
+after the views have been laid out, and before the views are drawn for the first time.
|
|
|
</div>
|
|
|
<div class="markdown level1 conceptual"></div>
|
|
|
<h5 class="decalaration">Declaration</h5>
|
|
@@ -1446,7 +1455,7 @@ the views have been laid out, and before the views are drawn for the first time.
|
|
|
</h3>
|
|
|
<h4 id="Terminal_Gui_Toplevel_Activate" data-uid="Terminal.Gui.Toplevel.Activate">Activate</h4>
|
|
|
<div class="markdown level1 summary">
|
|
|
-Invoked once the Toplevel's <a class="xref" href="Terminal.Gui.Application.RunState.html">Application.RunState</a> becomes the <a class="xref" href="Terminal.Gui.Application.html#Terminal_Gui_Application_Current">Current</a>.
|
|
|
+Invoked when the Toplevel <a class="xref" href="Terminal.Gui.Application.RunState.html">Application.RunState</a> becomes the <a class="xref" href="Terminal.Gui.Application.html#Terminal_Gui_Application_Current">Current</a> Toplevel.
|
|
|
</div>
|
|
|
<div class="markdown level1 conceptual"></div>
|
|
|
<h5 class="decalaration">Declaration</h5>
|
|
@@ -1470,7 +1479,8 @@ Invoked once the Toplevel's <a class="xref" href="Terminal.Gui.Application.
|
|
|
</table>
|
|
|
<h4 id="Terminal_Gui_Toplevel_AllChildClosed" data-uid="Terminal.Gui.Toplevel.AllChildClosed">AllChildClosed</h4>
|
|
|
<div class="markdown level1 summary">
|
|
|
-Invoked once the last child Toplevel's <a class="xref" href="Terminal.Gui.Application.RunState.html">Application.RunState</a> is closed from the <span class="xref">Terminal.Gui.Application.End(Terminal.Gui.View)</span>
|
|
|
+Invoked when the last child of the Toplevel <a class="xref" href="Terminal.Gui.Application.RunState.html">Application.RunState</a> is closed from
|
|
|
+by <span class="xref">Terminal.Gui.Application.End(Terminal.Gui.View)</span>.
|
|
|
</div>
|
|
|
<div class="markdown level1 conceptual"></div>
|
|
|
<h5 class="decalaration">Declaration</h5>
|
|
@@ -1542,7 +1552,8 @@ Invoked when the <a class="xref" href="Terminal.Gui.Application.html#Terminal_Gu
|
|
|
</table>
|
|
|
<h4 id="Terminal_Gui_Toplevel_ChildClosed" data-uid="Terminal.Gui.Toplevel.ChildClosed">ChildClosed</h4>
|
|
|
<div class="markdown level1 summary">
|
|
|
-Invoked once the child Toplevel's <a class="xref" href="Terminal.Gui.Application.RunState.html">Application.RunState</a> is closed from the <span class="xref">Terminal.Gui.Application.End(Terminal.Gui.View)</span>
|
|
|
+Invoked when a child of the Toplevel <a class="xref" href="Terminal.Gui.Application.RunState.html">Application.RunState</a> is closed by
|
|
|
+<span class="xref">Terminal.Gui.Application.End(Terminal.Gui.View)</span>.
|
|
|
</div>
|
|
|
<div class="markdown level1 conceptual"></div>
|
|
|
<h5 class="decalaration">Declaration</h5>
|
|
@@ -1566,7 +1577,7 @@ Invoked once the child Toplevel's <a class="xref" href="Terminal.Gui.Applic
|
|
|
</table>
|
|
|
<h4 id="Terminal_Gui_Toplevel_ChildLoaded" data-uid="Terminal.Gui.Toplevel.ChildLoaded">ChildLoaded</h4>
|
|
|
<div class="markdown level1 summary">
|
|
|
-Invoked once the child Toplevel's <a class="xref" href="Terminal.Gui.Application.RunState.html">Application.RunState</a> has begin loaded.
|
|
|
+Invoked when a child Toplevel's <a class="xref" href="Terminal.Gui.Application.RunState.html">Application.RunState</a> has been loaded.
|
|
|
</div>
|
|
|
<div class="markdown level1 conceptual"></div>
|
|
|
<h5 class="decalaration">Declaration</h5>
|
|
@@ -1590,7 +1601,7 @@ Invoked once the child Toplevel's <a class="xref" href="Terminal.Gui.Applic
|
|
|
</table>
|
|
|
<h4 id="Terminal_Gui_Toplevel_ChildUnloaded" data-uid="Terminal.Gui.Toplevel.ChildUnloaded">ChildUnloaded</h4>
|
|
|
<div class="markdown level1 summary">
|
|
|
-Invoked once the child Toplevel's <a class="xref" href="Terminal.Gui.Application.RunState.html">Application.RunState</a> has begin unloaded.
|
|
|
+Invoked when a cjhild Toplevel's <a class="xref" href="Terminal.Gui.Application.RunState.html">Application.RunState</a> has been unloaded.
|
|
|
</div>
|
|
|
<div class="markdown level1 conceptual"></div>
|
|
|
<h5 class="decalaration">Declaration</h5>
|
|
@@ -1614,7 +1625,7 @@ Invoked once the child Toplevel's <a class="xref" href="Terminal.Gui.Applic
|
|
|
</table>
|
|
|
<h4 id="Terminal_Gui_Toplevel_Closed" data-uid="Terminal.Gui.Toplevel.Closed">Closed</h4>
|
|
|
<div class="markdown level1 summary">
|
|
|
-Invoked once the Toplevel's <a class="xref" href="Terminal.Gui.Application.RunState.html">Application.RunState</a> is closed from the <span class="xref">Terminal.Gui.Application.End(Terminal.Gui.View)</span>
|
|
|
+Invoked when the Toplevel's <a class="xref" href="Terminal.Gui.Application.RunState.html">Application.RunState</a> is closed by <span class="xref">Terminal.Gui.Application.End(Terminal.Gui.View)</span>.
|
|
|
</div>
|
|
|
<div class="markdown level1 conceptual"></div>
|
|
|
<h5 class="decalaration">Declaration</h5>
|
|
@@ -1638,7 +1649,8 @@ Invoked once the Toplevel's <a class="xref" href="Terminal.Gui.Application.
|
|
|
</table>
|
|
|
<h4 id="Terminal_Gui_Toplevel_Closing" data-uid="Terminal.Gui.Toplevel.Closing">Closing</h4>
|
|
|
<div class="markdown level1 summary">
|
|
|
-Invoked once the Toplevel's <a class="xref" href="Terminal.Gui.Application.RunState.html">Application.RunState</a> is being closing from the <a class="xref" href="Terminal.Gui.Application.html#Terminal_Gui_Application_RequestStop_Terminal_Gui_Toplevel_">RequestStop(Toplevel)</a>
|
|
|
+Invoked when the Toplevel's <a class="xref" href="Terminal.Gui.Application.RunState.html">Application.RunState</a> is being closed by
|
|
|
+<a class="xref" href="Terminal.Gui.Application.html#Terminal_Gui_Application_RequestStop_Terminal_Gui_Toplevel_">RequestStop(Toplevel)</a>.
|
|
|
</div>
|
|
|
<div class="markdown level1 conceptual"></div>
|
|
|
<h5 class="decalaration">Declaration</h5>
|
|
@@ -1662,7 +1674,7 @@ Invoked once the Toplevel's <a class="xref" href="Terminal.Gui.Application.
|
|
|
</table>
|
|
|
<h4 id="Terminal_Gui_Toplevel_Deactivate" data-uid="Terminal.Gui.Toplevel.Deactivate">Deactivate</h4>
|
|
|
<div class="markdown level1 summary">
|
|
|
-Invoked once the Toplevel's <a class="xref" href="Terminal.Gui.Application.RunState.html">Application.RunState</a> ceases to be the <a class="xref" href="Terminal.Gui.Application.html#Terminal_Gui_Application_Current">Current</a>.
|
|
|
+Invoked when the Toplevel<a class="xref" href="Terminal.Gui.Application.RunState.html">Application.RunState</a> ceases to be the <a class="xref" href="Terminal.Gui.Application.html#Terminal_Gui_Application_Current">Current</a> Toplevel.
|
|
|
</div>
|
|
|
<div class="markdown level1 conceptual"></div>
|
|
|
<h5 class="decalaration">Declaration</h5>
|
|
@@ -1686,8 +1698,9 @@ Invoked once the Toplevel's <a class="xref" href="Terminal.Gui.Application.
|
|
|
</table>
|
|
|
<h4 id="Terminal_Gui_Toplevel_Loaded" data-uid="Terminal.Gui.Toplevel.Loaded">Loaded</h4>
|
|
|
<div class="markdown level1 summary">
|
|
|
-Fired once the Toplevel's <a class="xref" href="Terminal.Gui.Application.RunState.html">Application.RunState</a> has begin loaded.
|
|
|
-A Loaded event handler is a good place to finalize initialization before calling `<a class="xref" href="Terminal.Gui.Application.html#Terminal_Gui_Application_RunLoop_Terminal_Gui_Application_RunState_System_Boolean_">RunLoop(Application.RunState, Boolean)</a>.
|
|
|
+Invoked when the Toplevel <a class="xref" href="Terminal.Gui.Application.RunState.html">Application.RunState</a> has begin loaded.
|
|
|
+A Loaded event handler is a good place to finalize initialization before calling
|
|
|
+<a class="xref" href="Terminal.Gui.Application.html#Terminal_Gui_Application_RunLoop_Terminal_Gui_Application_RunState_System_Boolean_">RunLoop(Application.RunState, Boolean)</a>.
|
|
|
</div>
|
|
|
<div class="markdown level1 conceptual"></div>
|
|
|
<h5 class="decalaration">Declaration</h5>
|
|
@@ -1735,9 +1748,11 @@ Invoked when the <a class="xref" href="Terminal.Gui.Application.html#Terminal_Gu
|
|
|
</table>
|
|
|
<h4 id="Terminal_Gui_Toplevel_Ready" data-uid="Terminal.Gui.Toplevel.Ready">Ready</h4>
|
|
|
<div class="markdown level1 summary">
|
|
|
-Fired once the Toplevel's <a class="xref" href="Terminal.Gui.MainLoop.html">MainLoop</a> has started it's first iteration.
|
|
|
+Invoked when the Toplevel <a class="xref" href="Terminal.Gui.MainLoop.html">MainLoop</a> has started it's first iteration.
|
|
|
Subscribe to this event to perform tasks when the <a class="xref" href="Terminal.Gui.Toplevel.html">Toplevel</a> has been laid out and focus has been set.
|
|
|
-changes. A Ready event handler is a good place to finalize initialization after calling `<a class="xref" href="Terminal.Gui.Application.html#Terminal_Gui_Application_Run_System_Func_System_Exception_System_Boolean__">Run(Func<Exception, Boolean>)</a>(topLevel)`.
|
|
|
+changes.
|
|
|
+<p>A Ready event handler is a good place to finalize initialization after calling
|
|
|
+<a class="xref" href="Terminal.Gui.Application.html#Terminal_Gui_Application_Run_System_Func_System_Exception_System_Boolean__">Run(Func<Exception, Boolean>)</a> on this Toplevel.</p>
|
|
|
</div>
|
|
|
<div class="markdown level1 conceptual"></div>
|
|
|
<h5 class="decalaration">Declaration</h5>
|
|
@@ -1761,7 +1776,7 @@ changes. A Ready event handler is a good place to finalize initialization after
|
|
|
</table>
|
|
|
<h4 id="Terminal_Gui_Toplevel_Resized" data-uid="Terminal.Gui.Toplevel.Resized">Resized</h4>
|
|
|
<div class="markdown level1 summary">
|
|
|
-Invoked when the terminal was resized. The new <a class="xref" href="Terminal.Gui.Size.html">Size</a> of the terminal is provided.
|
|
|
+Invoked when the terminal has been resized. The new <a class="xref" href="Terminal.Gui.Size.html">Size</a> of the terminal is provided.
|
|
|
</div>
|
|
|
<div class="markdown level1 conceptual"></div>
|
|
|
<h5 class="decalaration">Declaration</h5>
|
|
@@ -1785,8 +1800,8 @@ Invoked when the terminal was resized. The new <a class="xref" href="Terminal.Gu
|
|
|
</table>
|
|
|
<h4 id="Terminal_Gui_Toplevel_Unloaded" data-uid="Terminal.Gui.Toplevel.Unloaded">Unloaded</h4>
|
|
|
<div class="markdown level1 summary">
|
|
|
-Fired once the Toplevel's <a class="xref" href="Terminal.Gui.Application.RunState.html">Application.RunState</a> has begin unloaded.
|
|
|
-A Unloaded event handler is a good place to disposing after calling `<a class="xref" href="Terminal.Gui.Application.html#Terminal_Gui_Application_End_Terminal_Gui_Application_RunState_">End(Application.RunState)</a>.
|
|
|
+Invoked when the Toplevel <a class="xref" href="Terminal.Gui.Application.RunState.html">Application.RunState</a> has been unloaded.
|
|
|
+A Unloaded event handler is a good place to dispose objects after calling <a class="xref" href="Terminal.Gui.Application.html#Terminal_Gui_Application_End_Terminal_Gui_Application_RunState_">End(Application.RunState)</a>.
|
|
|
</div>
|
|
|
<div class="markdown level1 conceptual"></div>
|
|
|
<h5 class="decalaration">Declaration</h5>
|