var loader = AcssContext.Default.GetService<IAcssLoader>();
var source1 = new FileSource("Acss/Case.acss");
loader.Load(Application.Current.Styles, source1);
// Use prefer path $"{debugRelative}Acss/Case.acss" if it is valid.
// Or use the path "Acss/Case.acss".
var source2 = new FileSource("Acss/Case.acss", $"{debugRelative}Acss/Case.acss");
loader.Load(Application.Current.Styles, source2);
2. 按目录加载
var loader = AcssContext.Default.GetService<IAcssLoader>();
loader.LoadCollection(this, new FileSourceCollection("Acss/"));
loader.LoadCollection(this, new FileSourceCollection("Acss/", "../../Acss/"));
var loader = AcssContext.Default.GetService<IAcssLoader>();
loader.Load(
Application.Current.Styles,
new EmbeddedSource(
new Uri("avares://Nlnet.Avalonia.Css.Fluent/Acss/AccentColor.acss"),
PreferLocalPath,
UseRecommendedPreferSource,
AutoExportSourceToLocal));
2. 按 Uri 批量加载
var loader = AcssContext.Default.GetService<IAcssLoader>();
loader.LoadCollection(
Application.Current.Styles,
new EmbeddedSourceCollection(
new Uri("avares://Nlnet.Avalonia.Css.Fluent/Acss/"),
PreferLocalPath,
UseRecommendedPreferSource,
AutoExportSourceToLocal));