mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-21 16:14:28 +08:00
feat.airapp sdk
This commit is contained in:
27
LanMountainDesktop.AirAppSdk/AirAppComponentResizeMode.cs
Normal file
27
LanMountainDesktop.AirAppSdk/AirAppComponentResizeMode.cs
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user