我有一个WPF控件库,它被添加到Windows窗体应用程序中。我们希望允许控件可以本地化,但是我不知道如何在不重复代码的情况下完全实现这一点。 This is what I am doing now
基本上,在Windows窗体应用程序中,在主应用程序启动之前,我正在实例化一个生活在窗体应用程序中的App.xaml(包含我的资源的链接,它们也存在于窗体应用程序中)。这非常适合运行时。
但是,我的用户控件全部都有Content="{StaticResource SomeVariableName}"
,最终为空白。我可以通过在我的控件库中使用app.xaml和相应的资源字典来匹配我的Windows窗体应用程序中的字典来解决这个问题。但是,这是重复的代码。
我已经尝试过的事情无济于事:
Uri resourceLocater = new Uri("/WindowsFormsApplication3;component/app.xaml", UriKind.Relative);
那么,有没有办法让它工作并且设计时间查看组件默认值并避免重复?或者,在这种情况下复制是否正常?如果我的第二个子弹的子项似乎没问题(复制App.xaml与构建复制的资源,),如何使它不查找组件级别的项目,而是查找文件级别的项目?
我刚才注意的最后一个问题(我可以在必要时单独发布)。我的App.xaml正在构建到代码中,因此无论如何都不允许我动态创建新的ResourceDictionaries。有没有办法做到这一点?
最终选项......可能是最好的选择? - I plan on using Andre van Heerwaarde's code anyway,那么我应该检查文件是否存在并将其作为合并资源即时添加?基本上,我的用户控件中有一个App.xaml链接到默认的嵌入式ResourceDictionary。然后,让代码在运行中寻找适当的本地化资源,这可能是相对文件路径?我在这里看到的唯一缺点是默认情况下无法动态改变...我甚至可以在指定的地方看一下(使用某种约定)并且优先于内置的?< / p>
哦,我不想要嵌入式资源的原因是最终用户可以在部署构建后添加/修改新的本地化资源。
我可以添加代码,如果它可以帮助您更好地将其可视化,请告诉我。
更新
我现在遇到了造型的另一个问题,而不仅仅是本地化。
以下是其中一个控件上的一个内部按钮的示例:
<Button Style="{StaticResource GrayButton}"
我尝试/想过的更多事情:
Here is a connect case实际上听起来像我正在寻找的东西,但它并没有为此提供任何真正的解决方案
我能想到的解决方案(超出顶部...哪些不起作用)可能起作用(并且尚未尝试)对于我认为应该简单的事情来说似乎也是很多工作。但是,我可能能够在我可以绑定的控件中创建一些依赖项属性,然后允许那些将使用该控件的项目覆盖它们。正如我所说,对于一个非常简单的请求来说,这似乎很多工作:)。这甚至会起作用吗?更重要的是,是否有一个更好,更简单的解决方案,我错过了?
答案 0 :(得分:13)
我曾经遇到过这个问题,我通过删除整个“资源是规范字典中的密钥索引的对象”来解决它。
我的意思是,在一个项目中定义资源并通过它的“关键”在另一个项目中引用它的简单事实应该给任何理智的人提供鸡皮疙瘩。我想要强大的引用。
我对此问题的解决方案是创建一个custom tool,将我的资源xaml文件转换为静态类,并为每个资源提供一个属性:
所以MyResources.xaml:
<ResourceDictionary>
<SolidColorBrush x:Key="LightBrush" ... />
<SolidColorBrush x:Key="DarkBrush" ... />
</ResourceDictionary>
成为MyResources.xaml.cs
public static class MyResources {
static MyResources() {
// load the xaml file and assign values to static properties
}
public static SolidColorBrush LightBrush { get; set; }
public static SolidColorBrush DarkBrush { get; set; }
}
要引用资源,您可以使用x:Static
代替StaticResource
:
<Border
Fill="{x:Static MyResources.LightBrush}"
BorderBrush="{x:Static MyResources.DarkBrush}"
... />
现在您获得了强大的引用,自动完成和资源编译时间检查。
答案 1 :(得分:0)
我在处理样式主题和可用的静态资源方面也遇到了问题。所以,我创建了一个独立的库,基本上只有所有嵌套的主题,就像你之前链接的问题的MERGED资源一样。
然后,在Windows窗体(.xaml)中,我只是引用该库,类似于
<Window x:Class="MyAppNamespace.MyView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ... />
<Window.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<!-- Common base theme -->
<ResourceDictionary Source="pack://application:,,,/MyLibrary;component/Themes/MyMainThemeWrapper.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Window.Resources>
<Rest of XAML for the WPF window>
</Window>
“组件”似乎是指给定“MyLibrary”项目的根。在实际项目中,我创建了一个名为“Themes”的子文件夹,因此源包括...; component / Themes /...
“MyMainThemeWrapper.xaml”非常类似于嵌套的Merged Resource词典,它可以很好地从其他库中看到所有内容。
答案 2 :(得分:0)
这是我的问题的部分解决方案。我没有尝试过处理松散的资源,但是我在WinForms和WPF之间共享资源方面取得了一些成功。
使用Infralution.Localization.Wpf标记扩展和文化管理器从WPF引用资源库中的资源,例如
<TextBlock Text="{Resx ResxName=ResourceLib.Resources, Key=Test}"/>
将WPF用户控件的内容作为控件模板放入一个或多个资源字典中,例如,
<ControlTemplate x:Key="TestTemplate">
<Grid>
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition/>
</Grid.RowDefinitions>
<TextBlock Text="{Resx ResxName=ResourceLib.Resources, Key=Test}"/>
</Grid>
</ControlTemplate>
在用户控件中使用资源模板
<UserControl x:Class="WpfControls.UserControl1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300" >
<UserControl.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="ResourceDictionary.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</UserControl.Resources>
<ContentControl Template="{StaticResource TestTemplate}" />
</UserControl>
添加几行代码以使其正常工作
public partial class UserControl1 : UserControl
{
// we require a reference to the resource library to ensure it's loaded into memory
private Class1 _class1 = new Class1();
public UserControl1()
{
// Use the CultureManager to switch to the current culture
CultureManager.UICulture = Thread.CurrentThread.CurrentCulture;
InitializeComponent();
}
}
这是一个简单的demo app,名为WindowsFormsHost.7z