在 Avalonia 类库中的何处加载 ContentControl 样式?
Posted
技术标签:
【中文标题】在 Avalonia 类库中的何处加载 ContentControl 样式?【英文标题】:Where to Load ContentControl Styles in Avalonia Class Library? 【发布时间】:2022-01-04 02:13:28 【问题描述】:我有一个用 Avalonia 类库编写的 ContentControl/TemplatedControl,以及在文件中定义的样式。
要在 WPF 中加载样式,您需要使用此 hack 添加 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>
但是——如果我想以不同的样式显示多个这样的控件怎么办?我可以在控件上有一个属性来选择主题或颜色。
【问题讨论】:
【参考方案1】: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;
【讨论】:
以上是关于在 Avalonia 类库中的何处加载 ContentControl 样式?的主要内容,如果未能解决你的问题,请参考以下文章