This commit is contained in:
Meik
2025-11-11 11:03:42 +01:00
commit dc3e8a2e4c
582 changed files with 191465 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
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;
}
}
}