10 references to AbsoluteLayout
Microsoft.Maui.Controls (9)
LegacyLayouts\AbsoluteLayout.cs (9)
15 public class AbsoluteLayout : Layout<View>, IElementConfiguration<AbsoluteLayout> 18 public static readonly BindableProperty LayoutFlagsProperty = BindableProperty.CreateAttached("LayoutFlags", typeof(AbsoluteLayoutFlags), typeof(AbsoluteLayout), AbsoluteLayoutFlags.None); 21 public static readonly BindableProperty LayoutBoundsProperty = BindableProperty.CreateAttached("LayoutBounds", typeof(Rect), typeof(AbsoluteLayout), new Rect(0, 0, AutoSize, AutoSize)); 24 readonly Lazy<PlatformConfigurationRegistry<AbsoluteLayout>> _platformConfigurationRegistry; 30 _platformConfigurationRegistry = new Lazy<PlatformConfigurationRegistry<AbsoluteLayout>>(() => 31 new PlatformConfigurationRegistry<AbsoluteLayout>(this)); 35 public IPlatformElementConfiguration<T, AbsoluteLayout> On<T>() where T : IConfigPlatform 313 public AbsoluteElementCollection(ObservableCollection<Element> inner, AbsoluteLayout parent) : base(inner) 318 internal AbsoluteLayout Parent { get; set; }
Microsoft.Maui.Controls.Compatibility (1)
AppHostBuilderExtensions.cs (1)
91 handlers.TryAddCompatibilityRenderer(typeof(Microsoft.Maui.Controls.Compatibility.AbsoluteLayout), typeof(DefaultRenderer));