22

我制作了一个类库程序集,在其中创建了自定义控件,并在 generic.xaml 文件中定义了默认样式。

只要有很多人发布它,这似乎是一个很常见的问题。但是我找不到任何有用的答案。

  • generic.xaml 位于 Themes 文件夹中。
  • 将generix.xaml 文件Build Action 设置为Page。
  • ThemeInfo 在我的 AssemblyInfo.cs 中正确定义。

在我的测试应用程序中,如果我手动将自定义控件程序集中的 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 文件。

  • Themes 文件夹中有一个子文件夹,它本身包含另一个 .xaml 文件。
4

5 回答 5

13

您需要在自定义控件构造函数中添加以下行:

public class MyCustomControl : Control
{
    static MyCustomControl()
    {
        DefaultStyleKeyProperty.OverrideMetadata(typeof(MyCustomControl), new FrameworkPropertyMetadata(typeof(MyCustomControl)));
    }
}

然后,如果您在主题文件夹中有一个 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>

现在样式将自动应用,无需任何额外的合并。

于 2013-09-01T18:26:21.547 回答
13

为了在我的自定义控件库中应用 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("...")]
于 2016-01-17T00:04:01.490 回答
0

Not sure if this works in WPF, but it works for me in Silverlight:

Constructor:

public class MyCustomControl : Control
{
    static MyCustomControl()
    {
        this.Style = (Style)Application.Current.Resources["MyCustomControlStyle"];
    }
}

Style:

<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>
于 2017-07-05T16:46:35.403 回答
0

由于自定义控件程序集中的以下属性,我遇到了同样的问题:

[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]

更改UltimateResourceFallbackLocation.SatelliteUltimateResourceFallbackLocation.MainAssembly删除第二个参数完全解决了我的问题(如果您不需要定义程序集的中性语言,也可以删除该属性)。

于 2018-06-25T11:09:56.393 回答
0

在我的情况下,我忘记删除x:Keyfrom<Style>标签。

错误的:

<Style TargetType="controls:IpTextBox" x:Key="MyControlStyle">

正确的:

<Style TargetType="controls:IpTextBox">
于 2022-01-26T14:41:32.223 回答