CPF/CPF.Toolkit/Dialogs/IClosable.cs

15 lines
304 B
C#
Raw Normal View History

using CPF.Controls;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
namespace CPF.Toolkit.Dialogs
{
internal interface IClosable
{
2023-11-22 23:55:50 +08:00
event EventHandler<object> Closable;
void OnClosable(object sender, ClosingEventArgs e);
}
}