Option Strict On
Option Explicit On

Namespace Nexamas.UI.Application

    ''' <summary>
    ''' Application-level policy for showing dialogs/panels through MASApplicationWindow.
    ''' This is the public SDK contract. FloatRuntime policies remain internal.
    ''' </summary>
    Public Enum MASApplicationDialogShowPolicy
        FailIfOccupied = 0
        ReplaceCurrent = 1
        QueueAfterCurrentClosed = 2
        CloseSameOwnerThenShow = 3
        ReuseIfSameOwner = 4
    End Enum

End Namespace
