7

如果我在 Visual Studio 中“调试”(F5)(调试和发布模式都可以),我有一个 WPF 应用程序可以很好地工作,但是如果我尝试双击 bin\Release 文件夹中的 .exe,Windows 会终止应用程序立即地。

问题似乎是可执行文件找不到“PresentationFramework.Aero”,我将其添加到我的应用程序的资源字典中,如下所示:

<ResourceDictionary.MergedDictionaries>
    <ResourceDictionary
        Source="/PresentationFramework.Aero;component/themes/Aero.NormalColor.xaml" />
    <ResourceDictionary
        Source="pack://application:,,,/WPFToolkit;component/Themes/Aero.NormalColor.xaml" />
</ResourceDictionary.MergedDictionaries>

包含 Aero 主题(或指向它)以便我可以发布我的应用程序的正确方法是什么?


这是我得到的确切错误:

无法加载文件或程序集“PresentationFramework.Aero,Culture=neutral”或其依赖项之一。系统找不到指定的文件。":"PresentationFramework.Aero, Culture=neutral

4

1 回答 1

7

结果我只需要在我的第一个ResourceDictionary声明中添加一些细节:

<ResourceDictionary
    Source="/PresentationFramework.Aero, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, ProcessorArchitecture=MSIL;component/themes/aero.normalcolor.xaml" />
于 2010-07-14T20:18:41.230 回答