Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4608758
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T00:53:26+00:00 2026-05-22T00:53:26+00:00

I have a checkbox. On it’s checked event I want to turn off IdleDetectionMode

  • 0

I have a checkbox. On it’s checked event I want to turn off IdleDetectionMode and on unchecked event I want to turn on. This is the code :-

private void chkRunInBackground_Checked(object sender, RoutedEventArgs e)
        {
            PhoneApplicationService.Current.ApplicationIdleDetectionMode = IdleDetectionMode.Disabled;

        }

        private void chkRunInBackground_Unchecked(object sender, RoutedEventArgs e)
        {
            PhoneApplicationService.Current.ApplicationIdleDetectionMode = IdleDetectionMode.Enabled;

        }

The checked event runs fine but on unchecked event I get, IdleDetection mode cannot be started once it is disabled. Why is this restriction applied and what can I do to work around it?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T00:53:27+00:00Added an answer on May 22, 2026 at 12:53 am

    From MSDN:

    In the current release, application
    idle detection cannot be enabled in a
    single application instance once it
    has been disabled. Doing so throws an
    exception. In future releases this may
    be supported, so your application may
    choose to disable application idle
    detection when it is no longer needed
    and catch the expected exception.

    The following code snippet shows an implementation of this.

    // Custom function to turn off idle detection. This will throw an exception in the current release.
    public void TryReenableApplicationIdleDetection()
    {
        bool didEnable = false;
        try
        {
            Microsoft.Phone.Shell.PhoneApplicationService.Current.ApplicationIdleDetectionMode =
                Microsoft.Phone.Shell.IdleDetectionMode.Enabled;
            didEnable = true;
        }
        catch (InvalidOperationException ex)
        {
            // This exception is expected in the current release.
        }
    
        // possibly use the value of didEnable to decide what to do next
        // if it is 'true' then your app will be deactivated 
        // if it is 'false' then your app will keep running
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have checkBox and Spinner . If the checkbox is checked, then spinner should
I have a checkbox that I do not want the user to have direct
I have a checkbox which in some cases may be disabled and checked using
I have a checkbox who's checked value is bound to a binding source which
I have a Checkbox array check[] and I need to pass this via a
I have a checkbox with a Checked property and a Listbox with an Enabled
I have a checkbox column bound to a dependency property. When editing the checked
I have checkbox in preferences. I want to keep screen on if checkbox is
I have a checkbox that I want to bind to a subclass. The DataSource
I have a checkbox which needs to be checked in order for it to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.