我创建了一个类库程序集,我在其中创建了自定义控件,并在generic.xaml文件中定义了默认样式。
这似乎是一个相当普遍的问题,只要很多人发布它。 但是我找不到任何有用的答案。
在我的测试应用程序中,如果我手动将自定义控件程序集中的generic.xaml文件合并到应用程序App.xaml文件中,如下所示:
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="/MyControlsAssembly;component/Themes/generic.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
然后自定义控件正确主题,但如果我不手动合并generic.xaml,控件将显示默认的Windows主题。
请告诉我,我忘了和/或做错了什么?
其他信息:
我的ThemeInfo程序集属性定义如下:
[assembly: ThemeInfo(ResourceDictionaryLocation.SourceAssembly, ResourceDictionaryLocation.SourceAssembly)]
(注意:结果与ThemeInfo属性的任何参数组合相同)
Themes文件夹中的generic.xaml文件旁边还有另外两个.xaml文件。
答案 0 :(得分:11)
您的自定义控件构造函数中需要以下行:
public class MyCustomControl : Control
{
static MyCustomControl()
{
DefaultStyleKeyProperty.OverrideMetadata(typeof(MyCustomControl), new FrameworkPropertyMetadata(typeof(MyCustomControl)));
}
}
然后,如果在themes文件夹中有generic.xaml文件,则使用以下示例样式:
<Style TargetType="{x:Type local:MyCustomControl}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type local:MyCustomControl}">
<Border>
<Label>Testing...</Label>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
现在样式将自动应用,无需任何额外的合并。
答案 1 :(得分:6)
要在我的自定义控件库中的Themes \ Generic.xaml中应用默认样式,我决定从完善的开源控件库(MahApps)中寻找灵感。这个项目为您提供了一个如何构建和布局自定义控件库的非常好的示例。
简而言之,要在Themes \ Generic.xaml中获取默认样式,您需要在自定义控件库的AssemblyInfo.cs文件中包含以下内容:
[assembly: ThemeInfo(ResourceDictionaryLocation.None, ResourceDictionaryLocation.SourceAssembly)]
在我的例子中,我的自定义控件AssemblyInfo.cs看起来像:
using System.Runtime.InteropServices;
using System.Windows;
using System.Windows.Markup;
[assembly: AssemblyCopyright("...")]
[assembly: ComVisible(false)]
[assembly: ThemeInfo(ResourceDictionaryLocation.None, ResourceDictionaryLocation.SourceAssembly)]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyInformationalVersion("1.0.0.0")]
[assembly: AssemblyTitleAttribute("...")]
[assembly: AssemblyDescriptionAttribute("")]
[assembly: AssemblyProductAttribute("...")]
[assembly: AssemblyCompany("...")]
答案 2 :(得分:0)
不确定这是否适用于WPF,但它在Silverlight中适用于我:
构造
public class MyCustomControl : Control
{
static MyCustomControl()
{
this.Style = (Style)Application.Current.Resources["MyCustomControlStyle"];
}
}
风格:
<Style x:Key="MyCustomControlStyle" TargetType="{local:MyCustomControl}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{local:MyCustomControl}">
<Border>
<Label>Testing...</Label>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
答案 3 :(得分:0)
由于自定义控件程序集中的以下属性,我遇到了同样的问题:
[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
将UltimateResourceFallbackLocation.Satellite
更改为UltimateResourceFallbackLocation.MainAssembly
或删除第二个参数完全可以解决我的问题(如果不需要定义程序集的中性语言,也可以删除该属性)。