在 Avalonia Class 库中的何处加载 ContentControl 样式?

Where to Load ContentControl Styles in Avalonia Class Library?

我有一个用 Avalonia Class 库编写的 ContentControl/TemplatedControl,以及在文件中定义的样式。

要加载样式,在 WPF 中,您需要使用此技巧添加 AssemblyInfo.cs

using System.Windows;

[assembly: ThemeInfo(
    ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
                                     //(used if a resource is not found in the page,
                                     // or application resource dictionaries)
    ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
                                              //(used if a resource is not found in the page,
                                              // app, or any theme specific resource dictionaries)
)]

现在有了 Avalonia...有什么办法吗?

编辑:客户必须在 App.xaml 中手动注册文件的答案是什么?

<Application.Styles>
    <StyleInclude Source="avares://Avalonia.Themes.Default/DefaultTheme.xaml"/>
    <StyleInclude Source="avares://Avalonia.Themes.Default/Accents/BaseLight.xaml"/>
    <StyleInclude Source="avares://Avalonia.Controls.DataGrid/Themes/Default.xaml"/>
</Application.Styles>

但是——如果我想显示多个具有不同样式的此类控件怎么办?我可以在控件上使用 属性 来选择主题或颜色。

App.xaml 中定义的样式是全局的,因此所有控件都将使用它们。但是,可以在运行时更改它们。在你的情况下,你可以从创建一个样式字典开始,以简化事情并在那里添加所有这些 StyleInclude,所以你的 Application.Styles 只有一个条目:

<Application.Styles>
    <StyleInclude Source="avares://YourAssembly/Path/YourStyles1.xaml"/>
</Application.Styles>

现在,假设您想在代码中将此资源更改为 YourStyles2.xaml

private static StyleInclude CreateStyle(string url)
{
    var self = new Uri("resm:Styles?assembly=YourAssembly");
    return new StyleInclude(self)
    {
        Source = new Uri(url)
    };
}

private void SetStyles()
{
   var newStyles = CreateStyle("avares://YourAssembly/Path/YourStyles2.xaml");
   Avalonia.Application.Current.Styles[0] = newStyles;
}