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

ShowInfoPrompt() private method

private ShowInfoPrompt ( ) : void
return void
        private void ShowInfoPrompt()
        {
            Dispatcher.BeginInvoke(() =>
                {
                    bool infoPrompted;
                    IsolatedStorageSettings.ApplicationSettings.TryGetValue(InfoPromptedKey, out infoPrompted);

                    if (infoPrompted)
                        return;

                    MessageBox.Show(
                        "See those three dots on bottom right of the screen? Good, tap it to popup menu and update your soldier's statistics when ever you want.",
                        "Hey there!", MessageBoxButton.OK);

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