BattlelogMobile.Client.View.SoldierPage.ShowTipPrompt C# (CSharp) Method

ShowTipPrompt() private method

private ShowTipPrompt ( ) : void
return void
        private void ShowTipPrompt()
        {
            Dispatcher.BeginInvoke(() =>
            {
                bool tipPrompted;
                IsolatedStorageSettings.ApplicationSettings.TryGetValue(TipPromptedKey, out tipPrompted);

                if (tipPrompted)
                    return;

                MessageBox.Show(
                    "Go to Battlelog website and change your Active Soldier to control which statistics are shown on your mobile.",
                    "Pro tip!", MessageBoxButton.OK);

                IsolatedStorageSettings.ApplicationSettings[TipPromptedKey] = true;
                IsolatedStorageSettings.ApplicationSettings.Save();
            });
        }