fix flyout event

This commit is contained in:
2025-06-17 12:56:01 +02:00
parent f40f2a001a
commit c76243839f
2 changed files with 3 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ namespace Pilz.UI.WinForms.Telerik.Dialogs;
partial class RadFlyoutBase
{
public delegate void FlyoutCreatedEventHandler(FlyoutCreatedEventArgs e);
public delegate void FlyoutClosedEventHandler(global::Telerik.WinControls.UI.SplashScreen.FlyoutClosedEventArgs e);
public delegate void FlyoutClosedEventHandler(FlyoutClosedEventArgs e);
public static event FlyoutCreatedEventHandler FlyoutCreated
{
@@ -70,7 +70,7 @@ partial class RadFlyoutBase
{
if (e.Content is RadFlyoutBase dialogBase)
{
var eventArgs = new global::Telerik.WinControls.UI.SplashScreen.FlyoutClosedEventArgs((RadFlyoutBase)e.Content);
var eventArgs = new FlyoutClosedEventArgs((RadFlyoutBase)e.Content);
foreach (var args in flyoutCloseHandlers.ToArray())
{