mirror of
https://github.com/jie65535/GrasscutterCommandGenerator.git
synced 2025-10-22 20:09:46 +08:00
Framework changed to WPF
Only the basic window frame is implemented. Adjusted the structure of resource files.
This commit is contained in:
14
Source/GrasscutterTools/Events/CommandGeneratedEventArgs.cs
Normal file
14
Source/GrasscutterTools/Events/CommandGeneratedEventArgs.cs
Normal 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; }
|
||||
}
|
||||
}
|
10
Source/GrasscutterTools/Events/ListChangedEventArgs.cs
Normal file
10
Source/GrasscutterTools/Events/ListChangedEventArgs.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace GrasscutterTools.Events
|
||||
{
|
||||
public class ListChangedEventArgs : EventArgs
|
||||
{
|
||||
public IEnumerable<string> List { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user