зеркало из https://github.com/DeGsoft/maui-linux.git
15 строки
340 B
C#
15 строки
340 B
C#
using System;
|
|
using UIKit;
|
|
|
|
namespace Xamarin.Forms.Platform.iOS
|
|
{
|
|
public interface IButtonLayoutRenderer
|
|
{
|
|
UIButton Control { get; }
|
|
Button Element { get; }
|
|
IImageVisualElementRenderer ImageVisualElementRenderer { get; }
|
|
nfloat MinimumHeight { get; }
|
|
event EventHandler<ElementChangedEventArgs<Button>> ElementChanged;
|
|
}
|
|
}
|