prevent canceling control events

This commit is contained in:
Pilzinsel64
2025-06-12 07:22:57 +02:00
parent bbd0017b33
commit aabcf29326
2 changed files with 8 additions and 5 deletions

View File

@@ -20,7 +20,10 @@ public partial class RadFlyoutBase : UserControl
public static RadSvgImage? ConfirmSvg { get; set; } = null;
[Browsable(false)]
public RadValidationProviderEx ValidationProvider { get; } = new();
public RadValidationProviderEx ValidationProvider { get; } = new()
{
AllowCancelControlEvents = false,
};
[ReadOnly(true)]
public DialogResult Result { get; protected set; }