change UI to UI.WinForms
This commit is contained in:
14
Pilz.UI.WinForms.Telerik/Dialogs/DialogClosedEventArgs.cs
Normal file
14
Pilz.UI.WinForms.Telerik/Dialogs/DialogClosedEventArgs.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using Pilz.UI.Telerik.Dialogs;
|
||||
|
||||
namespace Pilz.UI.WinForms.Telerik.Dialogs;
|
||||
|
||||
public class DialogClosedEventArgs : EventArgs
|
||||
{
|
||||
public RadDialogBase Parent { get; private set; }
|
||||
public RadFlyoutBase? Content => Parent?.DialogPanel;
|
||||
|
||||
public DialogClosedEventArgs(RadDialogBase dialog)
|
||||
{
|
||||
Parent = dialog;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user