private void ShowErrorWin(string message) { string messageToShow = "Необходимо переустановить терминал. Ошибка:" + message; AllertWindow win = new AllertWindow(messageToShow); win.ShowWindowOnCenter(); }
public void FatalError(string message) { GUIDispatcher.Invoke(new Action(() => { AllertWindow win = new AllertWindow(message); win.ShowWindowOnCenter(); // } )); }