Feat: add a new control PathPicker, add PathPickerDemo
This commit is contained in:
10
demo/Ursa.Demo/ViewModels/PathPickerDemoViewModel.cs
Normal file
10
demo/Ursa.Demo/ViewModels/PathPickerDemoViewModel.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using System.Collections.Generic;
|
||||
using CommunityToolkit.Mvvm.ComponentModel;
|
||||
|
||||
namespace Ursa.Demo.ViewModels;
|
||||
|
||||
public partial class PathPickerDemoViewModel : ViewModelBase
|
||||
{
|
||||
[ObservableProperty] private string? _path;
|
||||
[ObservableProperty] private IReadOnlyList<string>? _paths;
|
||||
}
|
||||
Reference in New Issue
Block a user