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,27 @@
namespace LanMountainDesktop.AirAppSdk;
/// <summary>
/// Resize mode for AirApp desktop components.
/// </summary>
public enum AirAppComponentResizeMode
{
/// <summary>
/// Cannot be resized.
/// </summary>
None = 0,
/// <summary>
/// Can be resized horizontally only.
/// </summary>
Horizontal = 1,
/// <summary>
/// Can be resized vertically only.
/// </summary>
Vertical = 2,
/// <summary>
/// Can be resized in both directions.
/// </summary>
Both = 3
}