private void showNotification() { // check if something is running fullscreen. if it is, do not show form and steal focus! if (!FullscreenCheck.IsFullscreen()) { frmNotify frmNot = new frmNotify(emails); frmNot.Show(); } }
private void showNotification() { frmNotify frmNot = new frmNotify(emails); frmNot.Show(); }