VintaSoft Annotation .NET Plug-in Discussions
Questions, comments and suggestions concerning VintaSoft Annotation .NET Plug-in.
Board index < VintaSoft Imaging < VintaSoft Annotation .NET Plug-in Discussions
public class CustomUndoAction : UndoAction
{
private Messages.VMMessage _message;
public Messages.VMMessage Message
{
get => this._message;
}
public CustomUndoAction(ICloneable source, VMMessage message) : base(source)
{
this._message = message;
}
protected override void Undo()
{
WeakReferenceMessenger.Default.Send(this._message);
}
}