예제 #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);
         }
     }
 }
예제 #3
0
 public void ShowAttachDialog()
 {
     using (AttachToProcessForm attachForm = new AttachToProcessForm()) {
         if (attachForm.ShowDialog() == DialogResult.OK)
         {
             Attach(attachForm.Process);
         }
     }
 }
예제 #4
0
		public void ShowAttachDialog()
		{
			using (AttachToProcessForm attachForm = new AttachToProcessForm()) {
				if (attachForm.ShowDialog(WorkbenchSingleton.MainWin32Window) == DialogResult.OK) {
					Attach(attachForm.Process);
				}
			}
		}
예제 #5
0
		public void ShowAttachDialog()
		{
			using (AttachToProcessForm attachForm = new AttachToProcessForm()) {
				if (attachForm.ShowDialog(SD.WinForms.MainWin32Window) == DialogResult.OK) {
					Attach(attachForm.Process);
				}
			}
		}
예제 #6
0
		public void ShowAttachDialog()
		{
			using (AttachToProcessForm attachForm = new AttachToProcessForm()) {
				if (attachForm.ShowDialog() == DialogResult.OK) {
					Attach(attachForm.Process);
				}
			}
		}