feat: implement multi layer dialog.
This commit is contained in:
@@ -1,6 +1,11 @@
|
||||
using Ursa.Common;
|
||||
|
||||
namespace Ursa.Controls;
|
||||
|
||||
public record DialogOptions
|
||||
{
|
||||
public bool ShowCloseButton { get; set; } = true;
|
||||
public string? Title { get; set; }
|
||||
public bool ExtendToClientArea { get; set; } = false;
|
||||
public DialogButton DefaultButtons { get; set; } = DialogButton.OKCancel;
|
||||
}
|
||||
Reference in New Issue
Block a user