11 lines
303 B
C#
11 lines
303 B
C#
namespace Pilz.UI.Telerik.Dialogs;
|
|
|
|
public class FlyoutClosedEventArgs : global::Telerik.WinControls.UI.SplashScreen.FlyoutClosedEventArgs
|
|
{
|
|
public new RadFlyoutBase? Content => base.Content as RadFlyoutBase;
|
|
|
|
public FlyoutClosedEventArgs(RadFlyoutBase content) : base(content)
|
|
{
|
|
}
|
|
}
|