1

私は完全に絶望しています...

これが私のコードです:

ControlChannelTrigger theChannel = new ControlChannelTrigger("channelId", 15, ControlChannelTriggerResourceType.RequestHardwareSlot); 

これは常に UnauthorizedAccessException (HRESULT 0x80070005) をスローします。

これが私が使用するマニフェストです

    <?xml version="1.0" encoding="utf-8"?>
<Package xmlns="http://schemas.microsoft.com/appx/2010/manifest">
  <Identity Name="cf45d5c8-2936-4d1f-9075-51a87ceb60ba" Publisher="CN=snuk182" Version="1.0.0.0" />
  <Properties>
    <DisplayName>Applic</DisplayName>
    <PublisherDisplayName>snuk182</PublisherDisplayName>
    <Logo>Assets\StoreLogo.png</Logo>
  </Properties>
  <Prerequisites>
    <OSMinVersion>6.2.0</OSMinVersion>
    <OSMaxVersionTested>6.2.0</OSMaxVersionTested>
  </Prerequisites>
  <Resources>
    <Resource Language="x-generate" />
  </Resources>
  <Applications>
    <Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="Applic.App">
      <VisualElements DisplayName="Applic" Logo="Assets\Logo.png" SmallLogo="Assets\SmallLogo.png" Description="Applic" ForegroundText="light" BackgroundColor="#464646" ToastCapable="true">
        <LockScreen Notification="badgeAndTileText" BadgeLogo="ImageResources\badge.png" />
        <DefaultTile ShowName="allLogos" WideLogo="ImageResources\widelogo.png" />
        <SplashScreen Image="Assets\SplashScreen.png" />
      </VisualElements>
      <Extensions>
        <Extension Category="windows.backgroundTasks" Executable="$targetnametoken$.exe" EntryPoint="Applic.BackgroundTask">
          <BackgroundTasks>
            <Task Type="controlChannel" />
          </BackgroundTasks>
        </Extension>
      </Extensions>
    </Application>
  </Applications>
  <Capabilities>
    <Capability Name="removableStorage" />
    <Capability Name="internetClient" />
  </Capabilities>
</Package>

ここでもウェブでも答えが見つかりませんでした。何が起こっているのかわからない...

4

2 に答える 2

1

ハハ、整理しました。週末の前にそれをするのはあまりにも明白でした。 システム設定でアプリケーションをロック画面アプリとしてマークする必要がありました。 みんなありがとう。

于 2012-07-23T06:44:26.390 に答える
1

もともと、「システム設定で自分のアプリケーションをロック画面アプリとしてマークする」方法がわかりませんでしたが、ここで見つけて共有したかった ここに画像の説明を入力

于 2016-05-05T13:39:30.787 に答える