feat: pre job: change events to routed events.
This commit is contained in:
@@ -1,12 +1,19 @@
|
||||
using Avalonia.Interactivity;
|
||||
|
||||
namespace Ursa.Controls;
|
||||
|
||||
public class DialogLayerChangeEventArgs
|
||||
public class DialogLayerChangeEventArgs: RoutedEventArgs
|
||||
{
|
||||
public DialogLayerChangeType ChangeType { get; }
|
||||
|
||||
public DialogLayerChangeEventArgs(DialogLayerChangeType type)
|
||||
{
|
||||
ChangeType = type;
|
||||
}
|
||||
public DialogLayerChangeEventArgs(RoutedEvent routedEvent, DialogLayerChangeType type): base(routedEvent)
|
||||
{
|
||||
ChangeType = type;
|
||||
}
|
||||
}
|
||||
|
||||
public enum DialogLayerChangeType
|
||||
|
||||
Reference in New Issue
Block a user