init
This commit is contained in:
14
Common/DTS.Common/Events/TextPastedEvent.cs
Normal file
14
Common/DTS.Common/Events/TextPastedEvent.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using Prism.Events;
|
||||
|
||||
namespace DTS.Common.Events
|
||||
{
|
||||
public class TextPastedEvent : PubSubEvent<ITextPastedEventArgs> { }
|
||||
|
||||
public interface ITextPastedEventArgs
|
||||
{
|
||||
string Text { get; }
|
||||
object Sender { get; }
|
||||
string Id { get; }
|
||||
object Tag { get; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user