我有一个Windows Phone 8.1 Silverlight应用程序,我需要切换到WMS。使用WMS时,不再使用WMAppManifest.xml
中的切片定义,所有切片都在Package.appxmanifest
中定义。
问题是,在Package.appxmanifest
中没有用于设置切片的UI。当我以XML格式打开文件时,我看不到宽瓷砖的定义。
那么如何添加宽瓷砖?
答案 0 :(得分:1)
如果我记得,我直接在XML中添加了宽图块。我有那种线(检查Wide310x150Logo属性):
<Application Id="xxxxx" Executable="AGHost.exe" EntryPoint="View/MainPage.xaml">
<m3:VisualElements DisplayName="SeriesManiac" Square150x150Logo="Assets\150x150.png" Square44x44Logo="Assets\Logo.png" Description="SeriesManiac" ForegroundText="light" BackgroundColor="transparent" ToastCapable="true">
<m3:DefaultTile Wide310x150Logo="Assets\WideLogo.png" Square71x71Logo="Assets\71x71.png">
</m3:DefaultTile>
<m3:SplashScreen Image="Assets\Splashscreen.png" />
</m3:VisualElements>
<Extensions>
<Extension Category="windows.backgroundTasks" EntryPoint="AgHost.BackgroundTask">
<BackgroundTasks>
<Task Type="systemEvent" />
</BackgroundTasks>
</Extension>
</Extensions>
</Application>