code optimization
This commit is contained in:
@@ -1,21 +1,12 @@
|
||||
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;
|
||||
|
||||
namespace Pilz.UI.Telerik.Dialogs
|
||||
public class DialogLoadingEventArgs : EventArgs
|
||||
{
|
||||
public class DialogLoadingEventArgs : EventArgs
|
||||
{
|
||||
public DialogBase Parent { get; private set; }
|
||||
public FlyoutBase? Content => Parent?.DialogPanel;
|
||||
public DialogBase Parent { get; private set; }
|
||||
public FlyoutBase? Content => Parent?.DialogPanel;
|
||||
|
||||
public DialogLoadingEventArgs(DialogBase dialog)
|
||||
{
|
||||
Parent = dialog;
|
||||
}
|
||||
public DialogLoadingEventArgs(DialogBase dialog)
|
||||
{
|
||||
Parent = dialog;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user