actually now its usable

This commit is contained in:
zznty
2023-11-13 23:17:39 +07:00
parent aecc7ee66f
commit ce07a1e86a
41 changed files with 1401 additions and 138 deletions

20
Kits/Views/EditButton.cs Normal file
View File

@@ -0,0 +1,20 @@
using System.Windows;
using System.Windows.Controls;
namespace Kits.Views;
public partial class EditButton : UserControl
{
public EditButton()
{
InitializeComponent();
}
private void ButtonBase_OnClick(object sender, RoutedEventArgs e)
{
new ProperCollectionEditor
{
DataContext = DataContext,
WindowStartupLocation = WindowStartupLocation.CenterOwner,
Owner = Window.GetWindow(this)
}.ShowDialog();
}
}