File: Window\Window.iOS.cs | Web Access |
Project: src\src\Controls\src\Core\Controls.Core.csproj (Microsoft.Maui.Controls) |
using System; using ObjCRuntime; using UIKit; namespace Microsoft.Maui.Controls { public partial class Window { internal UIWindow NativeWindow => (Handler?.PlatformView as UIWindow) ?? throw new InvalidOperationException("Window should have a UIWindow set."); } } |