Update docs

This commit is contained in:
Miguel de Icaza
2018-03-22 11:53:07 -04:00
parent 9a0cfcd3a0
commit 852aa95236
69 changed files with 2074 additions and 134 deletions

View File

@@ -85,6 +85,7 @@
<div class="level4"><a class="xref" href="Terminal.Gui.Window.html">Window</a></div>
<div class="level5"><span class="xref">Dialog</span></div>
</div>
<div class="level6"><a class="xref" href="Terminal.Gui.FileDialog.html">FileDialog</a></div>
<div class="inheritedMembers">
<h5>Inherited Members</h5>
<div>
@@ -248,6 +249,53 @@
</h3>
<a id="Terminal_Gui_Dialog__ctor_" data-uid="Terminal.Gui.Dialog.#ctor*"></a>
<h4 id="Terminal_Gui_Dialog__ctor_NStack_ustring_System_Int32_System_Int32_Terminal_Gui_Button___" data-uid="Terminal.Gui.Dialog.#ctor(NStack.ustring,System.Int32,System.Int32,Terminal.Gui.Button[])">Dialog(ustring, Int32, Int32, Button[])</h4>
<div class="markdown level1 summary"><p>Initializes a new instance of the <a class="xref" href="Terminal.Gui.Dialog.html">Dialog</a> class with an optional set of buttons to display</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public Dialog (NStack.ustring title, int width, int height, Terminal.Gui.Button[] buttons);</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">NStack.ustring</span></td>
<td><span class="parametername">title</span></td>
<td><p>Title for the dialog.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Int32</span></td>
<td><span class="parametername">width</span></td>
<td><p>Width for the dialog.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Int32</span></td>
<td><span class="parametername">height</span></td>
<td><p>Height for the dialog.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="Terminal.Gui.Button.html">Button</a>[]</td>
<td><span class="parametername">buttons</span></td>
<td><p>Optional buttons to lay out at the bottom of the dialog.</p>
</td>
</tr>
</tbody>
</table>
<a id="Terminal_Gui_Dialog__ctor_" data-uid="Terminal.Gui.Dialog.#ctor*"></a>
<h4 id="Terminal_Gui_Dialog__ctor_System_String_System_Int32_System_Int32_Terminal_Gui_Button___" data-uid="Terminal.Gui.Dialog.#ctor(System.String,System.Int32,System.Int32,Terminal.Gui.Button[])">Dialog(String, Int32, Int32, Button[])</h4>
<div class="markdown level1 summary"><p>Initializes a new instance of the <a class="xref" href="Terminal.Gui.Dialog.html">Dialog</a> class with an optional set of buttons to display</p>