22 lines
520 B
C#
22 lines
520 B
C#
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;
|
|
}
|
|
}
|
|
}
|