/// <summary> /// Result of clicking the "Show Path" menu option /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void Click_ShowPath(object sender, EventArgs e) { PathForm pathform = new PathForm(this); m_host.Locator = pathform; // This will act as the Locator while it's running pathform.Show(); }