【问题标题】:How to store Application state in windows phone如何在windows phone中存储应用程序状态
【发布时间】:2013-07-09 11:37:15
【问题描述】:

我有一个应用程序,当我打开它一次时它工作得很好,但现在的问题是,如果用户点击 Windows 主页键,它会退出应用程序并将我的应用程序移动到后台。现在,如果用户长按返回键并打开我的应用程序,它会返回到用户点击主页键的同一页面。但是如果用户点击应用程序图标,我的应用程序会从我不想要的开头开始。请帮我。谢谢

告诉我应该把代码放在哪里才能得到想要的结果。

我的 App.xaml 如下: =================

namespace MyProj
{
    /// <summary>
    /// Interaction logic for App.xaml
    /// </summary>
    public partial class App : Application
    {

        // Easy access to the root frame
        public PhoneApplicationFrame RootFrame
        {
            get;
            private set;
        }

        // Constructor
        public App()
        {
            // Global handler for uncaught exceptions. 
            UnhandledException += Application_UnhandledException;

            // Standard Silverlight initialization
            InitializeComponent();

            // Phone-specific initialization
            InitializePhoneApplication();


            // Show graphics profiling information while debugging.
            if (System.Diagnostics.Debugger.IsAttached)
            {
                // Display the current frame rate counters.
                Application.Current.Host.Settings.EnableFrameRateCounter = true;

                // Show the areas of the app that are being redrawn in each frame.
                //Application.Current.Host.Settings.EnableRedrawRegions = true;

                // Enable non-production analysis visualization mode, 
                // which shows areas of a page that are handed off to GPU with a colored overlay.
                //Application.Current.Host.Settings.EnableCacheVisualization = true;

                // Disable the application idle detection by setting the UserIdleDetectionMode property of the
                // application's PhoneApplicationService object to Disabled.
                // Caution:- Use this under debug mode only. Application that disable user idle detection will continue to run
                // and consume battery power when the user is not using the phone.
                PhoneApplicationService.Current.UserIdleDetectionMode = IdleDetectionMode.Disabled;
            }

        }

        // Code to execute when the application is launching (eg, from Start)
        // This code will not execute when the application is reactivated
        private void Application_Launching(object sender, LaunchingEventArgs e)
        {

        }

        // Code to execute when the application is activated (brought to foreground)
        // This code will not execute when the application is first launched
        private void Application_Activated(object sender, ActivatedEventArgs e)
        {
            // Restart session

        }

        // Code to execute when the application is deactivated (sent to background)
        // This code will not execute when the application is closing
        private void Application_Deactivated(object sender, DeactivatedEventArgs e)
        {
        }

        // Code to execute when the application is closing (eg, user hit Back)
        // This code will not execute when the application is deactivated
        private void Application_Closing(object sender, ClosingEventArgs e)
        {
            ViewModelLocator.Cleanup();
        }

        // Code to execute if a navigation fails
        private void RootFrame_NavigationFailed(object sender, NavigationFailedEventArgs e)
        {
            if (System.Diagnostics.Debugger.IsAttached)
            {
                // A navigation has failed; break into the debugger
                System.Diagnostics.Debugger.Break();
            }
        }

        // Code to execute on Unhandled Exceptions
        private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e)
        {
            if (System.Diagnostics.Debugger.IsAttached)
            {
                // An unhandled exception has occurred; break into the debugger
                System.Diagnostics.Debugger.Break();
            }
        }

        #region Phone application initialization

        // Avoid double-initialization
        private bool phoneApplicationInitialized = false;

        // Do not add any additional code to this method
        private void InitializePhoneApplication()
        {
            if (phoneApplicationInitialized)
                return;

            // Create the frame but don't set it as RootVisual yet; this allows the splash
            // screen to remain active until the application is ready to render.
            //RootFrame = new PhoneApplicationFrame();
            RootFrame = new TransitionFrame();
            RootFrame.Navigated += CompleteInitializePhoneApplication;

            // Handle navigation failures
            RootFrame.NavigationFailed += RootFrame_NavigationFailed;

            // Ensure we don't initialize again
            phoneApplicationInitialized = true;
        }

        // Do not add any additional code to this method
        private void CompleteInitializePhoneApplication(object sender, NavigationEventArgs e)
        {
            // Set the root visual to allow the application to render
            if (RootVisual != RootFrame)
                RootVisual = RootFrame;

            // Remove this handler since it is no longer needed
            RootFrame.Navigated -= CompleteInitializePhoneApplication;
        }

        #endregion
    }
}

【问题讨论】:

  • @Joe Korolewicz 对此有任何帮助,我真的卡住了......谢谢
  • 很抱歉,我没有使用过 Windows Phone,所以我帮不上什么忙,我只是重新标记它以获得更好的可见性。如果您想猜测一下,我会说创建另一个属性,例如您的 RootFrame,即 CurrentFrame,并且每当您重新激活时,都要为其提供焦点。
  • 您可能需要阅读有关隔离存储的信息,以便在应用关闭后保存内容。

标签: c# wpf windows-phone silverlight-5.0


【解决方案1】:

您需要实现墓碑功能。请阅读
App activation and deactivation for Windows Phone

【讨论】:

  • 我试过这个,也是一个TomstoneHelper.dll。但是当我实现一切然后启动我的应用程序,然后按 Windows 主页键,然后按 appicon,我的应用程序再次重新启动..:(
  • “然后按 appicon”表示点击平铺或长按返回按钮并从池中选择应用程序?如果您使用 wp7 - 当您点击应用程序时,每个应用程序都会再次运行。仅在 wp8 中支持从点击恢复到磁贴
  • 哦是这样,那么请您帮忙解决我的问题,实际上我必须保存用户登录会话,以便将来用户再次返回时用户登录状态被保留。我使用了IsolatedstorageSettings来获取userProfile,但是用户登录的响应包含一个cookie容器,用于进一步交互,但是当我将它保存在isolatedstorage中时,它不起作用。此外,cookiescontainer 包含空白 cookie,我无法弄清楚来来去去的东西..
  • 您可以在 IS 设置中保存登录/密码。以及任何其他直接在独立存储中自己的文件中的可序列化对象(例如,带有所有用户活动的 .xml)。如果您不知道如何在 IS 中创建/存储/读取文件,也请阅读此内容:geekchamp.com/tips/…
  • 我正在做的,无论如何感谢您对 windows phone 7 的确认 :)
猜你喜欢
  • 1970-01-01
  • 2016-09-08
  • 1970-01-01
  • 2014-05-25
  • 2014-07-23
  • 1970-01-01
  • 1970-01-01
  • 2010-11-06
  • 2011-10-15
相关资源
最近更新 更多