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:
Tig Kindel
2022-07-21 18:41:05 -04:00
committed by GitHub
parent a02dfeabd9
commit 99890b18dc
17 changed files with 222 additions and 3187 deletions

View File

@@ -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