add Pilz.UI.Telerik & Pilz.UI.Telerik.SymbolFactory
This commit is contained in:
20
Pilz.UI.Telerik/Dialogs/DialogClosedEventArgs.cs
Normal file
20
Pilz.UI.Telerik/Dialogs/DialogClosedEventArgs.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace Pilz.UI.Telerik.Dialogs
|
||||
{
|
||||
public class DialogClosedEventArgs : EventArgs
|
||||
{
|
||||
public DialogBaseForm Parent { get; private set; }
|
||||
public FlyoutDialogBase? Content => Parent?.DialogPanel;
|
||||
|
||||
public DialogClosedEventArgs(DialogBaseForm dialog)
|
||||
{
|
||||
Parent = dialog;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user