Option Strict On
Option Explicit On

Namespace Nexamas.UI.Application

    ''' <summary>
    ''' Describes how a theme facade applies theme changes.
    ''' </summary>
    Public Enum MASApplicationThemeScope
        ''' <summary>
        ''' Theme selection is shared by the whole MAS application process. All ThemeHost instances
        ''' observe ThemeManager.Current and refresh their snapshots after the global current theme changes.
        ''' </summary>
        GlobalApplication = 0
    End Enum

End Namespace
