Metro-like theme for WPF [closed]
I would like to know where i can get t开发者_C百科he theme that looks like Zune application for Windows (or MetroTwit) for WPF.
I google it but i only get the theme for Silverlight 4, not WPF.
Resurrecting a dead post, perhaps, self promoting? More than certain, however, I've (relatively recently) started a Metro theme pack largely based on stuff I've created in MahTweets and from the Silverlight Cosmopolitan theme pack specifically for WPF
https://github.com/MahApps/MahApps.Metro
Usage is simple, just
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Colours.xaml"/>
<ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Fonts.xaml"/>
<ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Controls.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
There are some caveats over the way WPF handles theming from other assemblies that you will have to look into.
It's free, open source and would love further contributions if others are looking for this sort of thing in WPF.
精彩评论