CPF/CPF.Toolkit/ICloseable.cs

15 lines
290 B
C#
Raw Normal View History

2024-01-25 22:35:00 +08:00
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);
}
}