20 lines
490 B
C#
20 lines
490 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
using Telerik.WinControls.UI.SplashScreen;
|
|
|
|
namespace Pilz.UI.Telerik.Dialogs
|
|
{
|
|
public class FlyoutCreatedEventArgs : ContentCreatedEventArgs
|
|
{
|
|
public new FlyoutDialogBase? Content => base.Content as FlyoutDialogBase;
|
|
|
|
public FlyoutCreatedEventArgs(FlyoutDialogBase content) : base(content)
|
|
{
|
|
}
|
|
}
|
|
}
|