File: IControlsVisualElement.cs
Web Access
Project: src\src\Controls\src\Core\Controls.Core.csproj (Microsoft.Maui.Controls)
#nullable enable
using System;
 
namespace Microsoft.Maui.Controls
{
	internal interface IControlsVisualElement : IControlsElement, IView
	{
		event EventHandler? WindowChanged;
		Window? Window { get; }
		event EventHandler? PlatformContainerViewChanged;
	}
}