inital
This commit is contained in:
24
FasdDesktopUi/Basics/CustomEvents/BooleanEventArgs.cs
Normal file
24
FasdDesktopUi/Basics/CustomEvents/BooleanEventArgs.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user