自动按钮图标支持主题Windows手机

时间:2014-09-05 12:23:11

标签: windows-phone-7 button windows-phone-8 windows-phone themes

WP支持黑暗和浅色主题。用户可以将手机上的主题更改为亮或暗,特定属性也会相应更改,例如文本颜色等。

我正在尝试创建其中包含图标图像的按钮,以自动更改以支持用户选择的主题。

有没有一种简单的方法可以做到这一点?

以下是我正在使用当前按钮的方式:

    <Button Name="button" Margin="250,443,86,44" VerticalAlignment="Center" Style="{StaticResource roundButton}" Height="120" Click="button_click" HorizontalAlignment="Center" Width="120">
            <Image Source="/Assets/Tiles/picture.png" HorizontalAlignment="Left" VerticalAlignment="Center" />
    </Button>

1 个答案:

答案 0 :(得分:1)

你可以这样做。您可以检测应用程序运行时设置的主题,并相应地更改UI元素。我在MainPage.xaml页面的OnNavigatedTo方法中执行此操作以更改MainPage.xaml中的元素

protected override void OnNavigatedTo(NavigationEventArgs e)
{
    base.OnNavigatedTo(e);
    var theme = (Visibility)Resources["PhoneLightThemeVisibility"];

    if (theme == System.Windows.Visibility.Visible)
    {
        // Change the UI for Light theme
    }
    else
    {
        // Change the UI for Dark theme
    }
}

试试这个。这应该适合你。