using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using System.Windows.Forms.Design; namespace Pilz.UI.Telerik.Dialogs { public class DialogLoadingEventArgs : EventArgs { public DialogBaseForm Parent { get; private set; } public FlyoutDialogBase? Content => Parent?.DialogPanel; public DialogLoadingEventArgs(DialogBaseForm dialog) { Parent = dialog; } } }