Merge pull request #235 from hootyjeremy/patch-12

csharp highlighting was incorrect
This commit is contained in:
Max Katz 2022-04-05 14:32:53 -04:00 коммит произвёл GitHub
Родитель 53b2b7a8bd d2101e4535
Коммит 6f442da98f
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -18,7 +18,7 @@ One example for populating a `TreeView` can be from a directory on the computer.
In the `MainWindowViewModel.cs` you can add this code which will recursively look up all the subfolders and populate the TreeView from `Items` and `Subfolders`
```markup
```csharp
public ObservableCollection<Node> Items { get; }
public ObservableCollection<Node> SelectedItems { get; }
public string strFolder { get; set; }