我有一个自定义控件,该控件使用在 app.xaml 中链接的资源字典中的样式。如果我删除链接并将链接添加到包含控件的页面,则它不起作用。为什么?为什么我的控件(dll)需要样式位于 app.xaml 中,而不仅仅是位于包含控件的页面上?
为什么我的控件(dll)需要样式位于 app.xaml 中,而不仅仅是位于包含控件的页面上?
自定义控件需要默认样式。此默认样式在构造函数中设置。例如:
public CustomControl()
{
DefaultStyleKey = typeof(CustomControl);
}
设置此选项后,它将在包含程序集中查找此样式。如果控件位于应用程序中,则它会在 App.xaml 中查找。如果控件位于类库中,它将在必须放置在文件夹"主题"中的文件 Generic.xaml 中查找。您不需要将样式放置在这两个文件中。可以创建包含样式的单独文件,并从 App.xaml 或 Themes/Generic.xaml(基于定义控件的位置)引用它。为此,您可以在其中一个文件中创建一个合并词典。如果您的控件是在应用程序中定义的,您将执行
<Application x:Class="MyApp.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<!--Application Resources-->
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="Controls/CustomControl.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
<Application.Resources>
</Application>
如果控件是在类库中定义的,则 Themes/Generic.xaml 应如下所示
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="/My.Custom.Assembly;component/FolderLocationOfXaml/CustomControl.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
无论您的自定义控件放置在何处,此操作的 xaml 将始终看起来相同
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:My.Custom.Assembly.Controls">
<Style TargetType="local:CustomControl">
<Setter Property="Background" Value="Transparent"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="local:CustomControl">
<Grid>
<! -- Other stuff here -->
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</ResourceDictionary>
如果未定义此默认样式,则无法确定要覆盖的样式。定义默认样式后,可以在应用中或使用控件的任何其他位置更改样式。
尝试将样式移动到控件中,以验证控件使用字典中的项所需的所有引用是否已到位。确保包含 UserControl 的项目具有对包含资源字典的项目的引用。验证字典的源路径:
<ResourceDictionary Source="/AssemblyName;component/StylesFolderName/ResourceDictionaryName.xaml" />