我写了一篇我试图发布的WPF / C#应用程序。该应用程序当前使用两个资源字典在主题之间切换。这是App.xaml文件,它指定了两个资源字典:
<Application x:Class="TopDeck.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:chartingToolkit="clr-namespace:System.Windows.Controls.DataVisualization.Charting;assembly=System.Windows.Controls.DataVisualization.Toolkit"
xmlns:visualizationToolkit="clr-namespace:System.Windows.Controls.DataVisualization;assembly=System.Windows.Controls.DataVisualization.Toolkit"
xmlns:chartingprimitives="clr-namespace:System.Windows.Controls.DataVisualization.Charting.Primitives;assembly=System.Windows.Controls.DataVisualization.Toolkit"
StartupUri="MainWindow.xaml">
<Application.Resources>
<ResourceDictionary>
<SolidColorBrush Color="#d0157820" x:Key="muddyBrush"/>
<Style TargetType="TextBlock" x:Key="MenuFont">
<Setter Property="Foreground" Value="Black"/>
</Style>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="DarkTheme.xaml"/>
<ResourceDictionary Source="LightTheme.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
</Application>
我有两个文件,DarkTheme.xaml和LightTheme.xaml,它们是资源词典。我没有把它们包括在内,因为我不认为它们的内容与此相关。
在我的MainWindow.xaml.cs中,我有一个在两个主题之间切换的方法。当我在Visual Studio 2013中运行我的代码时,此方法有效:
private void ChangeTheme(int themeChoice)
{
ResourceDictionary dict;
var assembly = Assembly.GetEntryAssembly() ?? Assembly.GetCallingAssembly();
var path = System.IO.Path.GetDirectoryName(assembly.Location);
path = path.Replace("bin\\Debug", "");
path = path.Replace("bin\\Release", "");
if (themeChoice == 0)
{
dict = (ResourceDictionary)XamlReader.Load(new FileStream(System.IO.Path.Combine(path, "LightTheme.xaml"), FileMode.Open));
theme = "LightTheme.xaml";
}
else
{
dict = (ResourceDictionary)XamlReader.Load(new FileStream(System.IO.Path.Combine(path, "DarkTheme.xaml"), FileMode.Open));
theme = "DarkTheme.xaml";
}
Application.Current.Resources.MergedDictionaries.Clear();
Application.Current.Resources.MergedDictionaries.Add(dict);
}
问题在于,当我发布此应用程序并尝试运行它时,我收到此错误消息:
{"Could not find file 'C:\\Users\\Emerald\\AppData\\Local\\Apps\\2.0\\JTHXX0YW.KTK\\1MZ2M8ZP.TV0\\topd..tion_1428230028859fe5_0001.0000_ec5ac614e9be24b1\\DarkTheme.xaml'.":"C:\\Users\\Emerald\\AppData\\Local\\Apps\\2.0\\JTHXX0YW.KTK\\1MZ2M8ZP.TV0\\topd..tion_1428230028859fe5_0001.0000_ec5ac614e9be24b1\\DarkTheme.xaml"}
有谁知道我可以做些什么来维护我的应用程序中的资源字典切换,但是避免这个错误?有没有办法指定我希望DarkTheme.xaml和LightTheme.xaml存在于已发布的应用程序中?如果没有,有没有办法在不明确加载文件的情况下引用这些资源字典?
答案 0 :(得分:0)
我想通过发布你的意思是通过ClickOnce发布。因此,要包含您的DarkTheme.xaml和LightTheme.xaml,请转到其属性并将构建操作设置为&#34;内容&#34;然后您可以检查(在项目属性&gt;发布&gt;应用程序文件中确实包含它们) 。但是,还要考虑以下方式来实现您的目标:
var themeDict = new ResourceDictionary();
var uriPath = string.Format("/{0};component/DarkTheme.xaml",
Assembly.GetEntryAssembly().GetName().Name);
var uri = new Uri(uriPath, UriKind.RelativeOrAbsolute);
themeDict.Source = uri;
Application.Current.Resources.MergedDictionaries.Add(themeDict);
你在这里做的是构建你的(已经存在的)DarkTheme.xaml文件的url,然后告诉ResourceDictionary那个url。有了这个,您不需要将构建操作更改为内容,也不需要部署任何内容。