File: ISwipeItem.cs
Web Access
Project: src\src\Controls\src\Core\Controls.Core.csproj (Microsoft.Maui.Controls)
#nullable disable
using System;
using System.Windows.Input;
 
namespace Microsoft.Maui.Controls
{
	public interface ISwipeItem : Maui.ISwipeItem
	{
		bool IsVisible { get; set; }
		ICommand Command { get; set; }
		object CommandParameter { get; set; }
 
		event EventHandler<EventArgs> Invoked;
	}
}