2

我想知道如何在 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>
4

1 回答 1

0

FileSavePicker 颜色由用户的主题偏好定义,而不是由您的应用程序定义。它不能被 StandardStyles.xaml 修改。

为了使您的应用程序无法尝试模拟系统对话框(如 FileSavePicker),您的应用程序无权访问这些用户首选项。

于 2014-01-01T23:12:00.787 回答