rename to FlyoutBase and DialogBase

This commit is contained in:
2024-04-29 06:19:50 +02:00
parent fce33f1e35
commit 3031f7196d
10 changed files with 37 additions and 37 deletions

View File

@@ -10,9 +10,9 @@ namespace Pilz.UI.Telerik.Dialogs
{
public class FlyoutCreatedEventArgs : ContentCreatedEventArgs
{
public new FlyoutDialogBase? Content => base.Content as FlyoutDialogBase;
public new FlyoutBase? Content => base.Content as FlyoutBase;
public FlyoutCreatedEventArgs(FlyoutDialogBase content) : base(content)
public FlyoutCreatedEventArgs(FlyoutBase content) : base(content)
{
}
}