0
0
mirror of https://github.com/sp-tarkov/installer.git synced 2025-02-13 09:50:45 -05:00
installer/SPTInstaller/Behaviors/SpanBehavior.cs

19 lines
514 B
C#
Raw Normal View History

2023-05-11 23:11:39 -04:00
using Avalonia;
using Avalonia.Interactivity;
namespace SPTInstaller.Behaviors;
public class SpanBehavior : AvaloniaObject
2023-05-11 23:11:39 -04:00
{
public static readonly AttachedProperty<bool> SpanProperty = AvaloniaProperty.RegisterAttached<SpanBehavior, Interactive, bool>("Span");
2023-05-11 23:11:39 -04:00
public static void SetSpan(AvaloniaObject element, bool value)
{
element.SetValue(SpanProperty, value);
}
2023-05-11 23:11:39 -04:00
public static bool GetSpan(AvaloniaObject element)
{
return element.GetValue(SpanProperty);
2023-05-11 23:11:39 -04:00
}
}