4

我使用以下方法在 WinRT 中请求锁屏访问:

public async void RequestLockScreenAccess()
    {
        var status = BackgroundExecutionManager.GetAccessStatus();
        if (status == BackgroundAccessStatus.Unspecified || status == BackgroundAccessStatus.Denied)
            status = await BackgroundExecutionManager.RequestAccessAsync();
        switch (status)
        {
            case BackgroundAccessStatus.AllowedWithAlwaysOnRealTimeConnectivity:
                _mainInfo.NotifyUser = "This app is on the lock screen and has access to Always-On Real Time Connectivity.";
                break;
            case BackgroundAccessStatus.AllowedMayUseActiveRealTimeConnectivity:
                _mainInfo.NotifyUser = "This app is on the lock screen and has access to Active Real Time Connectivity.";
                break;
            case BackgroundAccessStatus.Denied:
                _mainInfo.NotifyUser = "This app is not on the lock screen.";
                break;
            case BackgroundAccessStatus.Unspecified:
                _mainInfo.NotifyUser = "The user has not yet taken any action. This is the default setting and the app is not on the lock screen.";
                break;
        }
    }

这可以给我2个不同的错误。如果我在行前或行上放置断点

status = await BackgroundExecutionManager.RequestAccessAsync();

代码将执行,但抛出以下异常:

mscorlib.dll 中出现“System.Exception”类型的未处理异常附加信息:找不到元素。(来自 HRESULT 的异常:0x8002802B (TYPE_E_ELEMENTNOTFOUND))

正如我在另一篇文章中所读到的,这是其他人知道的错误,不了解 Microsoft。如果我不在此行之前放置断点,则执行将挂起。我在这里做错了什么?

似乎如果我卸载我的应用程序,它可能会工作,但在重新运行后它最终会再次失败。

4

4 回答 4

6

在访问锁屏访问时,我知道有两个错误。第一个,如果您在该行上有断点,那么执行将失败,因为您的应用程序没有在前台运行(您在 Visual Studio 中,而不是在您的应用程序中)并且锁屏对话框找不到您的应用程序的主窗口。

在 Simulator 中运行时会出现另一个问题 - GetAccessStatus 上的每次调用都会引发异常,因为在 Simulator 中基本上不允许此调用。

如果您想对此进行调试,请在 GetAccessStatus 调用之后放置断点并在本地计算机上对其进行测试,它应该可以正常工作。

更新,当在非 UI 线程上调用 RequestAccessAsync 方法时,我也遇到了这个异常。在 UI 线程上调用时,它工作正常。

于 2012-09-29T08:09:24.347 回答
0

这应该可以帮助您:

async void MainPage_Loaded(object sender, RoutedEventArgs args)
{
    var allowed = await Windows.ApplicationModel.Background
        .BackgroundExecutionManager.RequestAccessAsync();
    System.Diagnostics.Debugger.Break();
}

祝你好运!

于 2014-05-12T01:59:22.533 回答
0

您是否已验证您的包清单具有启用锁屏的应用程序所需的所有设置?

调用 GetAccessStatus 时不断抛出异常。检查清单文件后,我注意到“锁定屏幕通知”设置为空白。将其设置为“徽章”或“徽章和瓷砖测试”并选择徽章徽标解决了异常问题。

于 2013-01-22T20:25:59.220 回答
0

我在捕捉模式下(也在模拟器和断点中)有同样的问题。

我的解决方法如下:

  1. 在应用程序启动后立即在主页上调用 RequestAccessAsync,例如在 OnGotFocus 方法中。
  2. 它应该只被调用一次,并且永远不会在快照模式下调用。
  3. 不要尝试在模拟器中执行它。
  4. 不要在此方法上设置断点。

    private bool _isAccessRequested;
    protected override void OnGotFocus(RoutedEventArgs e)
    {
        if (!_isAccessRequested)
        {
            _isAccessRequested = true;
            BackgroundExecutionManager.RequestAccessAsync();
        }
    }
    
于 2013-05-08T11:35:18.640 回答