using System; namespace Avalonia.Platform { /// /// Hint for Window Chrome when ClientArea is Extended. /// [Flags] public enum ExtendClientAreaChromeHints { /// /// The will be no chrome at all. /// NoChrome, /// /// The default for the platform. /// Default = PreferSystemChrome, /// /// Use SystemChrome /// SystemChrome = 0x01, /// /// Use system chrome where possible. OSX system chrome is used, Windows managed chrome is used. /// This is because Windows Chrome can not be shown ontop of user content. /// PreferSystemChrome = 0x02, /// /// On OSX the titlebar is the thicker toolbar kind. Causes traffic lights to be positioned /// slightly lower than normal. /// OSXThickTitleBar = 0x08, } }