Inheritance: System.EventArgs
Example #1
0
 protected virtual void OnCopyText(CopyTextEventArgs e)
 {
     if (CopyText != null)
     {
         CopyText(this, e);
     }
 }
 void ClipboardHandlerCopyText(object sender, CopyTextEventArgs e)
 {
     //			TextEditorSideBar.PutInClipboardRing(e.Text);
 }
 protected virtual void OnCopyText(CopyTextEventArgs e)
 {
     if (CopyText != null)
     {
         CopyText(this, e);
     }
 }
		private void ClipboardHandlerCopyText(object sender, CopyTextEventArgs e) {
		}
Example #5
0
 protected virtual void OnCopyText(CopyTextEventArgs e)
 {
     CopyText?.Invoke(this, e);
 }
		void ClipboardHandlerCopyText(object sender, CopyTextEventArgs e)
		{
			ICSharpCode.SharpDevelop.Gui.SideBarView.PutInClipboardRing(e.Text);
		}