15 lines
350 B
C#
15 lines
350 B
C#
|
|
using Microsoft.Practices.Prism.Events;
|
|||
|
|
|
|||
|
|
namespace DTS.Common.Events
|
|||
|
|
{
|
|||
|
|
public class TextPastedEvent :CompositePresentationEvent<ITextPastedEventArgs> { }
|
|||
|
|
|
|||
|
|
public interface ITextPastedEventArgs
|
|||
|
|
{
|
|||
|
|
string Text { get; }
|
|||
|
|
object Sender { get; }
|
|||
|
|
string Id { get; }
|
|||
|
|
object Tag{ get; }
|
|||
|
|
}
|
|||
|
|
}
|