File: iOS\Renderers\IButtonLayoutRenderer.cs | Web Access |
Project: src\src\Compatibility\Core\src\Compatibility.csproj (Microsoft.Maui.Controls.Compatibility) |
using System; using Microsoft.Maui.Controls.Platform; using ObjCRuntime; using UIKit; namespace Microsoft.Maui.Controls.Compatibility.Platform.iOS { public interface IButtonLayoutRenderer { UIButton Control { get; } Button Element { get; } IImageVisualElementRenderer ImageVisualElementRenderer { get; } nfloat MinimumHeight { get; } event EventHandler<ElementChangedEventArgs<Button>> ElementChanged; } } |