File: LayoutConstraint.cs | Web Access |
Project: src\src\Controls\src\Core\Controls.Core.csproj (Microsoft.Maui.Controls) |
using System; namespace Microsoft.Maui.Controls { [Flags] internal enum LayoutConstraint { None = 0, HorizontallyFixed = 1 << 0, VerticallyFixed = 1 << 1, Fixed = HorizontallyFixed | VerticallyFixed } } |