private void button_OpenTraceWindow_Click(object sender, EventArgs e) { if (IsTraceWindowActive) { this.traceWindow.Activate(); } else { this.traceWindow = new DFATraceWindow(this.config.Structures.Select(x => x.Opcode).ToList()); this.traceWindow.Show(); } }
private void button_OpenTraceWindow_Click(object sender, EventArgs e) { if (IsTraceWindowActive) { this.traceWindow.Activate(); } else { this.traceWindow = new DFATraceWindow(); this.traceWindow.Show(); } }