Exemplo n.º 1
0
 public override void ShowAttachDialog()
 {
     using (AttachToProcessForm attachForm = new AttachToProcessForm()) {
         if (attachForm.ShowDialog(SD.WinForms.MainWin32Window) == DialogResult.OK)
         {
             Attach(attachForm.Process);
         }
     }
 }
 public void ShowAttachDialog()
 {
     using (AttachToProcessForm attachForm = new AttachToProcessForm()) {
         if (attachForm.ShowDialog(WorkbenchSingleton.MainWin32Window) == DialogResult.OK)
         {
             Attach(attachForm.Process);
         }
     }
 }
Exemplo n.º 3
0
 public void ShowAttachDialog()
 {
     using (AttachToProcessForm attachForm = new AttachToProcessForm()) {
         if (attachForm.ShowDialog() == DialogResult.OK)
         {
             Attach(attachForm.Process);
         }
     }
 }
Exemplo n.º 4
0
		public void ShowAttachDialog()
		{
			using (AttachToProcessForm attachForm = new AttachToProcessForm()) {
				if (attachForm.ShowDialog(WorkbenchSingleton.MainWin32Window) == DialogResult.OK) {
					Attach(attachForm.Process);
				}
			}
		}
Exemplo n.º 5
0
		public void ShowAttachDialog()
		{
			using (AttachToProcessForm attachForm = new AttachToProcessForm()) {
				if (attachForm.ShowDialog(SD.WinForms.MainWin32Window) == DialogResult.OK) {
					Attach(attachForm.Process);
				}
			}
		}
Exemplo n.º 6
0
		public void ShowAttachDialog()
		{
			using (AttachToProcessForm attachForm = new AttachToProcessForm()) {
				if (attachForm.ShowDialog() == DialogResult.OK) {
					Attach(attachForm.Process);
				}
			}
		}