CPF/CPF.Toolkit/Dialogs/IClosable.cs
2023-11-22 23:55:50 +08:00

15 lines
304 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<object> Closable;
void OnClosable(object sender, ClosingEventArgs e);
}
}