Files
aistudio-wpf-diagram/Others/Dragablz/Dragablz/TabEmptiedResponse.cs
2023-04-16 20:11:40 +08:00

14 lines
412 B
C#

namespace Dragablz
{
public enum TabEmptiedResponse
{
/// <summary>
/// Allow the Window to be closed automatically.
/// </summary>
CloseWindowOrLayoutBranch,
/// <summary>
/// The window will not be closed by the <see cref="TabablzControl"/>, probably meaning the implementor will close the window manually
/// </summary>
DoNothing
}
}