Example #1
0
 /// <summary>Occurs when the clipboard cut event fires.</summary>
 /// <param name="sender">The sender.</param>
 /// <param name="e">The event args.</param>
 protected virtual void OnClipboardCut(object sender, ClipboardEventArgs e)
 {
     ClipboardCut?.Invoke(sender, e);
 }
Example #2
0
 /// <summary>Occurs when the clipboard cut event fires.</summary>
 /// <param name="e">The event args.</param>
 protected virtual void OnClipboardCut(ClipboardEventArgs e)
 {
     ClipboardCut?.Invoke(this, e);
 }