maui-linux/Xamarin.Forms.Core/IButtonController.cs

9 строки
154 B
C#

namespace Xamarin.Forms
{
public interface IButtonController : IViewController
{
void SendClicked();
void SendPressed();
void SendReleased();
}
}