CPF/CPF.Toolkit/Dialogs/IClosable.cs

15 lines
303 B
C#

using CPF.Controls;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
namespace CPF.Toolkit.Dialogs
{
internal interface IClosable
{
event EventHandler<bool?> Closable;
void OnClosable(object sender, ClosingEventArgs e);
}
}