怎样才能使RibbonWindow看起来像Windows7的大都会风格呢?我试过这个解决方案,https://github.com/D-Key/whosh,但它打破了QuickAccess酒吧。
发布于 2014-02-06 14:51:03
好的,您需要为您的项目设置一个明确的主题。
。
<Application.Resources>
<ResourceDictionary>
<!-- other stuff -->
<ResourceDictionary.MergedDictionaries>
<!--example style-->
<ResourceDictionary Source="/PresentationFramework.Aero;component/themes/Aero.NormalColor.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>在Win8中有哪些主题可用?
快速搜索,我找到了PresentationFramework.Aero2.dll,但肯定还有其他一些样式
https://stackoverflow.com/questions/21604489
复制相似问题