feat: Add CanDragMove option to dialogs and make sure it can be disabled.

This commit is contained in:
rabbitism
2024-09-07 01:42:51 +08:00
parent 5d3646ed74
commit db1889d454
5 changed files with 74 additions and 77 deletions

View File

@@ -28,4 +28,6 @@ public class DialogOptions
public bool? IsCloseButtonVisible { get; set; } = true;
public bool ShowInTaskBar { get; set; } = true;
public bool CanDragMove { get; set; } = true;
}