mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2026-01-02 01:03:29 +01:00
Fixes Wizard cancel logic and updates docs (#1878)
* Fixed cancel logic. Title now shows for non-modal. * trying to fix docs * trying to fix docs
This commit is contained in:
@@ -56,12 +56,12 @@ tableView.Table = yourDataTable;
|
||||
```
|
||||
|
||||
## Table Rendering
|
||||
TableView supports any size of table (limited only by the RAM requirements of `System.DataTable`). You can have
|
||||
thousands of columns and/or millions of rows if you want. Horizontal and vertical scrolling can be done using
|
||||
TableView supports any size of table (limited only by the RAM requirements of `System.DataTable`). You can have
|
||||
thousands of columns and/or millions of rows if you want. Horizontal and vertical scrolling can be done using
|
||||
the mouse or keyboard.
|
||||
|
||||
TableView uses `ColumnOffset` and `RowOffset` to determine the first visible cell of the `System.DataTable`.
|
||||
Rendering then continues until the avaialble console space is exhausted. Updating the `ColumnOffset` and
|
||||
Rendering then continues until the avaialble console space is exhausted. Updating the `ColumnOffset` and
|
||||
`RowOffset` changes which part of the table is rendered (scrolls the viewport).
|
||||
|
||||
This approach ensures that no matter how big the table, only a small number of columns/rows need to be
|
||||
|
||||
Reference in New Issue
Block a user