mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-04-11 03:36:38 +08:00
14 lines
412 B
C#
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
|
|
}
|
|
} |