C# 我之所以能';不能同时移动或调整我的小部件Xbox游戏栏?

C# 我之所以能';不能同时移动或调整我的小部件Xbox游戏栏?,c#,xaml,uwp,C#,Xaml,Uwp,这(1)是Package.appxmanifest的开始 <Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.mic

这(1)是Package.appxmanifest的开始

<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
         xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest"
         xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
         xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3"
         IgnorableNamespaces="uap uap3 mp">
<Application Id="App"
  Executable="$targetnametoken$.exe"
  EntryPoint="llllllllll">
  <Extensions>
    <uap3:Extension Category="windows.appExtension">
      <uap3:AppExtension Name="microsoft.gameBarUIExtension"
                         Id="Widget"
                         DisplayName="llllllllll"
                         Description="llllllllll"
                         PublicFolder="GameBar">
        <uap3:Properties>
          <GameBarWidget Type="Standard">
            <HomeMenuVisible>true</HomeMenuVisible>
            <PinningSupported>true</PinningSupported>
            <Size>
              <Height>450</Height>
              <Width>250</Width>
            </Size>
            <ResizeSupported>
              <Horizontal>true</Horizontal>
              <Vertical>true</Vertical>
            </ResizeSupported>
          </GameBarWidget>
        </uap3:Properties>
      </uap3:AppExtension>
    </uap3:Extension>
  </Extensions>

这些行是红色的(无法理解),我的小部件XGB无法调整大小或移动,尽管我的清单中有这(2)

<Application Id="App"
  Executable="$targetnametoken$.exe"
  EntryPoint="llllllllll">
  <Extensions>
    <uap3:Extension Category="windows.appExtension">
      <uap3:AppExtension Name="microsoft.gameBarUIExtension"
                         Id="Widget"
                         DisplayName="llllllllll"
                         Description="llllllllll"
                         PublicFolder="GameBar">
        <uap3:Properties>
          <GameBarWidget Type="Standard">
            <HomeMenuVisible>true</HomeMenuVisible>
            <PinningSupported>true</PinningSupported>
            <Size>
              <Height>450</Height>
              <Width>250</Width>
            </Size>
            <ResizeSupported>
              <Horizontal>true</Horizontal>
              <Vertical>true</Vertical>
            </ResizeSupported>
          </GameBarWidget>
        </uap3:Properties>
      </uap3:AppExtension>
    </uap3:Extension>
  </Extensions>
开始