我想知道如何在 Metro 应用程序上更改 FileSavePicker 的主题。我只为android找到了这个问题的答案,并没有太大帮助。而且我在 msdn 文档中没有找到任何内容。那么是否可以更改 FileSavePicker 的主题?它是否存在诸如 fileSavePicker.RequestedTheme() 之类的方法或属性?
仅供参考,我在 App.xaml 中定义了我的应用程序主题:
<Application
x:Class="ClientAirNavLight_WS.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:ClientAirNavLight_WS"
RequestedTheme="Light">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<!--
Styles that define common aspects of the platform look and feel
Required by Visual Studio project and item templates
-->
<ResourceDictionary Source="Common/StandardStyles.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
</Application>