-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
21 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,26 @@ | ||
# WinUI.TableView | ||
TableView for WinUI is derived from ListView and has basic functionalities like editing, column resizing, sorting and multi sorting. | ||
TableView for WinUI is derived from ListView and is blazing fast data loading. Internally it uses it's own implementation of AdvancedCollectionViewSource from CommunityToolkit as ItemsSource. | ||
|
||
## Multi Sorting | ||
### Editing | ||
![image](https://github.com/w-ahmad/WinUI.TableView/assets/17172092/31cbf22d-be74-4ea9-83ac-a18648630282) | ||
![image](https://github.com/w-ahmad/WinUI.TableView/assets/17172092/c8ac6b98-c0bc-4dc7-9caa-c5a90c2b9b6e) | ||
|
||
### Sorting | ||
![image](https://github.com/w-ahmad/WinUI3.TableView/assets/17172092/52fc3607-daae-4c63-8edb-05269397f53a) | ||
|
||
### Excel like Filter | ||
![image](https://github.com/w-ahmad/WinUI.TableView/assets/17172092/d4a8126b-f324-4451-ab34-d19034e2e4f3) | ||
|
||
### Options button | ||
![image](https://github.com/w-ahmad/WinUI.TableView/assets/17172092/8c804dcf-8324-489b-aad5-a9981868b631) | ||
|
||
### Exporting | ||
(Coming soon) | ||
|
||
### Column Types | ||
1. TableViewTextColumn | ||
2. TableViewNumberColumn | ||
3. TableViewCheckBoxColumn | ||
4. TableViewToggleSwitchColumn | ||
5. TableViewComboBoxColumn | ||
6. TableViewTemplateColumn |