CPF/CPF.Toolkit/Dialogs/IClosable.cs

15 lines
314 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-29 17:07:17 +08:00
event EventHandler<ClosingEventArgs> Closable;
void OnClosable(object sender, ClosingEventArgs e);
}
}