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