Framework changed to WPF

Only the basic window frame is implemented.
Adjusted the structure of resource files.
This commit is contained in:
2022-09-29 21:56:43 +08:00
parent 346a68ddb4
commit a055dc5299
128 changed files with 48325 additions and 63581 deletions

View File

@@ -0,0 +1,14 @@
using System;
namespace GrasscutterTools.Events
{
public class CommandGeneratedEventArgs : EventArgs
{
public CommandGeneratedEventArgs(string command = "")
{
Command = command;
}
public string Command { get; set; }
}
}

View File

@@ -0,0 +1,10 @@
using System;
using System.Collections.Generic;
namespace GrasscutterTools.Events
{
public class ListChangedEventArgs : EventArgs
{
public IEnumerable<string> List { get; set; }
}
}