2023-11-22 21:02:42 +08:00
|
|
|
|
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;
|
2023-11-22 21:02:42 +08:00
|
|
|
|
void OnClosable(object sender, ClosingEventArgs e);
|
|
|
|
|
}
|
|
|
|
|
}
|