Add project files.
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
|
||||
namespace TheXamlGuy.Framework.WPF;
|
||||
|
||||
public class EventInvokedArgs : EventArgs
|
||||
{
|
||||
public EventInvokedArgs(object args)
|
||||
{
|
||||
Invoked = args;
|
||||
}
|
||||
|
||||
public object Invoked { get; }
|
||||
}
|
||||
Reference in New Issue
Block a user