feat: implement layer change.
This commit is contained in:
18
src/Ursa/Controls/Dialog/DialogLayerChangeEventArgs.cs
Normal file
18
src/Ursa/Controls/Dialog/DialogLayerChangeEventArgs.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
namespace Ursa.Controls;
|
||||
|
||||
public class DialogLayerChangeEventArgs
|
||||
{
|
||||
public DialogLayerChangeType ChangeType { get; }
|
||||
public DialogLayerChangeEventArgs(DialogLayerChangeType type)
|
||||
{
|
||||
ChangeType = type;
|
||||
}
|
||||
}
|
||||
|
||||
public enum DialogLayerChangeType
|
||||
{
|
||||
BringForward,
|
||||
SendBackward,
|
||||
BringToFront,
|
||||
SendToBack
|
||||
}
|
||||
Reference in New Issue
Block a user