mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 15:44:25 +08:00
28 lines
527 B
C#
28 lines
527 B
C#
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
|
|
}
|