mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-06-28 13:34:09 +08:00
15 lines
314 B
C#
15 lines
314 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<ClosingEventArgs> Closable;
|
|
void OnClosable(object sender, ClosingEventArgs e);
|
|
}
|
|
}
|