private void MakeLog() { if (resultOut == null) resultOut = new ResultOut(); resultOut.Show(); resultOut.Focus(); }
private void MakeLog() { if (resultOut == null || !resultOut.Visible) { resultOut = new ResultOut(); } resultOut.Show(); resultOut.Focus(); }