protected virtual void OnPasted()
 {
     TextPasted?.Invoke(this, new EventArgs());
 }
 /// <summary>
 /// Raises the <see cref="E:TextPasted" /> event.
 /// </summary>
 /// <param name="e">The <see cref="ClipboardEventArgs"/> instance containing the event data.</param>
 protected virtual void OnTextPasted(ClipboardEventArgs e)
 {
     TextPasted?.Invoke(this, e);
 }
Exemple #3
0
 internal void OnTextPasted(TextEventArgs e)
 {
     TextPasted?.Invoke(this, e);
 }