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

12 строки
201 B
C#

using System.ComponentModel;
namespace Xamarin.Forms
{
[EditorBrowsable(EditorBrowsableState.Never)]
public interface ISliderController
{
void SendDragStarted();
void SendDragCompleted();
}
}