public void UnlockAchievement_Click(SteamApp app)
        {
            switch (app.Type)
            {
            case SteamAppTypeEnum.Application:
            case SteamAppTypeEnum.Game:
                //var achievement = new AchievementWindowViewModel();
                //WindowService.Current.MainWindow.Transition(achievement, typeof(AchievementWindow));
                var nApp = app.Clone();
                //nApp.Process = Process.Start($"{ProductInfo.Title}.exe", app.AppId.ToString(CultureInfo.InvariantCulture));
                nApp.Process = Process.Start(Environment.GetCommandLineArgs()[0], "-app " + app.AppId.ToString(CultureInfo.InvariantCulture));
                SteamConnectService.Current.RuningSteamApps.Add(nApp);
                break;

            default:
                StatusService.Current.Notify(Resources.Unsupported_Operation);
                break;
            }
        }