Files
C4IT-F4SD-Client/FasdDesktopUi/Basics/CustomEvents/BooleanEventArgs.cs
2025-11-11 11:03:42 +01:00

25 lines
522 B
C#

using System.Windows;
namespace FasdDesktopUi.Basics.CustomEvents
{
public class BooleanEventArgs : RoutedEventArgs
{
public bool BooleanArg { get; set; }
public BooleanEventArgs()
{
}
public BooleanEventArgs(bool booleanArg)
{
BooleanArg = booleanArg;
}
public BooleanEventArgs(RoutedEvent routedEvent, bool booleanArg) : base(routedEvent)
{
BooleanArg = booleanArg;
}
}
}