A cross-platform UI framework for .NET
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

21 lines
516 B

using System;
namespace Avalonia.Platform
{
[Flags]
public enum ExtendClientAreaChromeHints
{
NoChrome,
Default = SystemTitleBar,
SystemTitleBar = 0x01,
ManagedChromeButtons = 0x02,
SystemChromeButtons = 0x04,
OSXThickTitleBar = 0x08,
PreferSystemChromeButtons = 0x10,
AdaptiveChromeWithTitleBar = SystemTitleBar | PreferSystemChromeButtons,
AdaptiveChromeWithoutTitleBar = PreferSystemChromeButtons,
}
}