mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-04-04 23:39:26 +08:00
15 lines
290 B
C#
15 lines
290 B
C#
using CPF.Controls;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Text;
|
|
|
|
namespace CPF.Toolkit
|
|
{
|
|
public interface ICloseable
|
|
{
|
|
event EventHandler<ClosingEventArgs> Closable;
|
|
void OnClosable(ClosingEventArgs e);
|
|
}
|
|
}
|