File: Shell\IShellContentController.cs
Web Access
Project: src\src\Controls\src\Core\Controls.Core.csproj (Microsoft.Maui.Controls)
#nullable disable
using System;
 
namespace Microsoft.Maui.Controls
{
	public interface IShellContentController : IElementController
	{
		Page GetOrCreateContent();
 
		void RecyclePage(Page page);
 
		Page Page { get; }
		event EventHandler IsPageVisibleChanged;
	}
}