Feat: add a new control PathPicker, add PathPickerDemo

This commit is contained in:
望尘空忧
2025-01-10 11:50:11 +08:00
committed by wckfx
parent dac9656d17
commit 3d08aa37ed
11 changed files with 470 additions and 18 deletions

View 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;
}