41 lines
1.3 KiB
C#
41 lines
1.3 KiB
C#
using System.Collections;
|
|
using Avalonia;
|
|
using Avalonia.Controls.Primitives;
|
|
|
|
namespace Semi.Avalonia.Demo.Controls;
|
|
|
|
public class ShadowGroupControl : TemplatedControl
|
|
{
|
|
public static readonly StyledProperty<string?> TitleProperty =
|
|
AvaloniaProperty.Register<ShadowGroupControl, string?>(nameof(Title));
|
|
|
|
public string? Title
|
|
{
|
|
get => GetValue(TitleProperty);
|
|
set => SetValue(TitleProperty, value);
|
|
}
|
|
|
|
private IEnumerable? _lightShadows;
|
|
|
|
public static readonly DirectProperty<ShadowGroupControl, IEnumerable?> LightShadowsProperty =
|
|
AvaloniaProperty.RegisterDirect<ShadowGroupControl, IEnumerable?>(nameof(LightShadows),
|
|
o => o.LightShadows, (o, v) => o.LightShadows = v);
|
|
|
|
public IEnumerable? LightShadows
|
|
{
|
|
get => _lightShadows;
|
|
set => SetAndRaise(LightShadowsProperty, ref _lightShadows, value);
|
|
}
|
|
|
|
private IEnumerable? _darkShadows;
|
|
|
|
public static readonly DirectProperty<ShadowGroupControl, IEnumerable?> DarkShadowsProperty =
|
|
AvaloniaProperty.RegisterDirect<ShadowGroupControl, IEnumerable?>(nameof(DarkShadows),
|
|
o => o.DarkShadows, (o, v) => o.DarkShadows = v);
|
|
|
|
public IEnumerable? DarkShadows
|
|
{
|
|
get => _darkShadows;
|
|
set => SetAndRaise(DarkShadowsProperty, ref _darkShadows, value);
|
|
}
|
|
} |