C #windows Metro App上的Light主题中的FileSavePicker

时间:2013-08-21 13:32:32

标签: c# .net user-interface windows-store-apps

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

1 个答案:

答案 0 :(得分:0)

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

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