refactor<*>: rewrite all with AvaloniaUI

This commit is contained in:
leo 2024-02-06 15:08:37 +08:00
parent 0136904612
commit 2a62596999
521 changed files with 19780 additions and 23244 deletions

View file

@ -0,0 +1,32 @@
using System;
using System.ComponentModel.DataAnnotations;
using System.Threading.Tasks;
namespace SourceGit.ViewModels {
public class CreateGroup : Popup {
[Required(ErrorMessage = "Group name is required!")]
public string Name {
get => _name;
set => SetProperty(ref _name, value, true);
}
public CreateGroup(RepositoryNode parent) {
_parent = parent;
View = new Views.CreateGroup() { DataContext = this };
}
public override Task<bool> Sure() {
Preference.AddNode(new RepositoryNode() {
Id = Guid.NewGuid().ToString(),
Name = _name,
IsRepository = false,
IsExpanded = false,
}, _parent);
return null;
}
private RepositoryNode _parent = null;
private string _name = string.Empty;
}
}