| File: Handlers\Label\ILabelHandler.cs | Web Access |
| Project: src\src\Core\src\Core.csproj (Microsoft.Maui) |
#if __IOS__ || MACCATALYST using PlatformView = Microsoft.Maui.Platform.MauiLabel; #elif MONOANDROID using PlatformView = AndroidX.AppCompat.Widget.AppCompatTextView; #elif WINDOWS using PlatformView = Microsoft.UI.Xaml.Controls.TextBlock; #elif TIZEN using PlatformView = Tizen.UIExtensions.NUI.Label; #elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !TIZEN) using PlatformView = System.Object; #endif namespace Microsoft.Maui.Handlers { public partial interface ILabelHandler : IViewHandler { new ILabel VirtualView { get; } new PlatformView PlatformView { get; } } }