feat: add more resources.

This commit is contained in:
rabbitism
2023-02-13 02:55:29 +08:00
parent b06e7c6443
commit f3bb040dc9
5 changed files with 196 additions and 30 deletions

View File

@@ -22,9 +22,7 @@ public class FunctionalColorGroupControl: TemplatedControl
get => _lightColors;
set => SetAndRaise(LightColorsProperty, ref _lightColors, value);
}
public static readonly DirectProperty<FunctionalColorGroupControl, IEnumerable> DarkColorsProperty = AvaloniaProperty.RegisterDirect<FunctionalColorGroupControl, IEnumerable>(
nameof(DarkColors), o => o.DarkColors, (o, v) => o.DarkColors = v);
private IEnumerable _darkColors;