File: VisualElement\VisualElement.Standard.cs | Web Access |
Project: src\src\Controls\src\Core\Controls.Core.csproj (Microsoft.Maui.Controls) |
using System; using System.Collections.Generic; using System.Text; namespace Microsoft.Maui.Controls { public partial class VisualElement { partial void HandlePlatformUnloadedLoaded() { if (this.IsLoaded) { SendLoaded(false); } else { SendUnloaded(false); } } } } |