This is not a bug. It is a limitation of TreeView.
The Sort method appears as Children is a standard List. However the items cannot be automatically compared.
You can sort the TreeView items by:
- Declare a custom type with Text As String and TI As TreeItem.
- Create a new list based on the TreeView items.
- Call List.SortType to sort the elements.
- Now add the items to the TreeView.