private void EditTrace(Trace Trace) { if (Editor == null) { Editor = new TraceEditor(this, Trace); Editor.Show(); } else { Editor.LoadTrace(Trace); Editor.BringToFront(); } }
public void EditorClosed() { RefreshTraces(); Editor = null; }