File: Cells\ICellController.cs
Web Access
Project: src\src\Controls\src\Core\Controls.Core.csproj (Microsoft.Maui.Controls)
#nullable disable
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
 
namespace Microsoft.Maui.Controls
{
	public interface ICellController
	{
		event EventHandler ForceUpdateSizeRequested;
 
		void SendAppearing();
		void SendDisappearing();
	}
}