protected virtual void OnReviewClicked(object sender, System.EventArgs e) { this.Hide(); ReviewWaypointDialog dlg = new ReviewWaypointDialog(m_widget); dlg.Matches = m_matches; dlg.Run(); m_widget.App.RefreshAll(); }
protected virtual void OnReviewClicked(object sender, System.EventArgs e) { this.Hide(); ReviewWaypointDialog dlg = new ReviewWaypointDialog(m_widget); UIMonitor mon = UIMonitor.getInstance(); dlg.Parent = mon.Main; dlg.Icon = mon.Main.Icon; dlg.Matches = m_matches; dlg.Run(); }