0

您好,我正在尝试将主题应用于 Fluent Ribbon,但不幸的是它不起作用。但是视觉工作室设计师的有趣之处在于一切正常。这是我尝试做的代码,还有一个问题。如何在主窗口中禁用全屏模式?

<Application x:Class="WLDA.Server.App" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> <Application.Resources> <ResourceDictionary> <ResourceDictionary.MergedDictionaries> <ResourceDictionary Source="pack://application:,,,/Fluent;Component/Themes/Windows8/Generic.xaml" /> </ResourceDictionary.MergedDictionaries> </ResourceDictionary> </Application.Resources> </Application> 在此处输入图像描述

测试应用

4

1 回答 1

0

这可能是由于 Orchestra 为您自动添加的 Fluent Ribbon 样式(默认为 Office 2013)。

一种解决方案可能是从Application.Current.Resources.MergedDictionariesWindows 8 中删除现有字典并添加它。

您可以使用 Orchestra 存储库(带有示例)来测试这是否有效。

于 2016-01-02T17:35:46.333 回答