feat.airapp sdk

This commit is contained in:
lincube
2026-06-08 02:39:44 +08:00
parent 1a6f129e78
commit 7db72fbcd0
36 changed files with 2617 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
namespace LanMountainDesktop.AirAppSdk;
/// <summary>
/// Window chrome mode for AirApp windows.
/// </summary>
public enum AirAppWindowChromeMode
{
/// <summary>
/// Standard window with title bar and borders.
/// </summary>
Standard = 0,
/// <summary>
/// Borderless window with custom chrome.
/// </summary>
Borderless = 1,
/// <summary>
/// Full-screen window with no decorations.
/// </summary>
FullScreen = 2,
/// <summary>
/// Tool window (no taskbar icon, small title bar).
/// </summary>
Tool = 3,
/// <summary>
/// Background-only (no UI, reserved for future use).
/// </summary>
BackgroundOnly = 4
}