public void ShowDialog() { try { if (uiInstance == null) { uiInstance = new AppGrabberUI(this); uiInstance.Show(); } uiInstance.Activate(); } catch { } }
public void ShowDialog() { try { if (uiInstance == null) { uiInstance = new AppGrabberUI(this); uiInstance.Show(); } uiInstance.Activate(); } catch (Exception e) { ShellLogger.Error($"AppGrabberService: Error creating AppGrabberUI: {e.Message}", e); } }